$(function() {
    
  var thisUrl = location.hostname;
    if (thisUrl=="www.elitefitnessconsultants.co.uk") {
        $(".you_tube a").each(function(){
            var url = $(this).attr("href");
            var urlLength = url.length;
            var charLength = eval(urlLength-11);
            var getCode = url.slice(charLength,urlLength);
            $(this).html("<object width=\"390\" height=\"316\"><param name=\"movie\" value=\"http://www.youtube.com/v/"+getCode+"\"></param><param name=\"allowFullScreen\" value=\"true\"></param><param name=\"allowscriptaccess\" value=\"always\"></param><embed src=\"http://www.youtube.com/v/"+getCode+"\" type=\"application/x-shockwave-flash\" allowscriptaccess=\"always\" allowfullscreen=\"true\" width=\"390\" height=\"316\"></embed></object>");
        });
    }
   
   $(".locations_list").wrapInner("<select id=\"locations\"></select>");
   $("#locations").prepend("<option value=\"0\">Please Select</option>\n");
        $("#locations a").each(function(){
            var link = $(this).attr("href");
            var text = $(this).text();
            
            $("#locations").append("<option value=\""+link+"\">"+text+"</option>\n");
        }).hide();
        
        $("#locations").change(function() {
            var newLocation = $("#locations option:selected").val();
            window.location=newLocation;
        });
});
