$(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>");
        });
    }
   
});