$(document).ready(function(){
 	$.preloadImages("/images/layout/nav.gif,/images/grafix/logo.gif");

 	$("#recordsContainer > ul").tabs();
	$('.video-entry a').hover(function(){
			$(this).find('.name').show();
		}, function(){
			$(this).find('.name').hide();
		});
});



jQuery.preloadImages = function()
{
  for(var i = 0; i<arguments.length; i++)
  {
    jQuery("<img>").attr("src", arguments[i]);
  }
}
