//jquery.media: used to embed Flash (see jquery.media.js for details)

$(document).ready(function () {
	
  $('.media_clients').media({ 
      width:     570, 
      height:    75, 
      autoplay:  true, 
      caption:   false 
  }); 
  
  $('div.clientLogos img').hide();

	$('div.clientLogos img').each(function(index) {
	

		if ((Math.floor(Math.random()*10))%2 == 0){
				$(this).fadeIn(1000);
		}else{
			$(this).fadeIn(3000);
		}
		
	});
	
	$('div.clients_link a').hide();
	
	$('div.clients_link a').fadeIn(2000);

	
	
	
	
	
	
  
});
