jQuery(document).ready(function() {

var maxint = jQuery('a.embedYouTube').size();
//maxint = maxint-1;
var numRand = Math.floor(Math.random()*maxint)

//alert(numRand);

var firstlink = jQuery("a.embedYouTube::eq(" + numRand + ")").attr('href');
jQuery("a.embedYouTube::eq(" + numRand + ")").addClass('currentVideoText');
firstlink = firstlink.substr(31);
jQuery('#youtubevid').html('<embed src="http://www.youtube.com/v/' + firstlink  + '&hl=en_US&fs=1&" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="260" height="220"></embed></object>');

jQuery('a.embedYouTube').click(function (){
	jQuery('a.embedYouTube').removeClass('currentVideoText');
	jQuery(this).addClass('currentVideoText');
     var link = jQuery(this).attr('href');
     
     link = link.substr(31);
     
    
    jQuery('#youtubevid').fadeOut('fast', function(){ jQuery('#youtubevid').html('<object width="260" height="220"><param name="movie" value="http://www.youtube.com/v/' + link + '=en_US&fs=1&"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/' + link  + '&hl=en_US&fs=1&" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="260" height="220"></embed></object>'); }).fadeIn("slow");
  
    return false;
});
});



