/**
 * @author mfox
 */

$(document).ready(function(){	
	
	var fPlayer = null;
	
	$images = $('#vidgrid-video').children();
	$images.each(function(index) {
	    if (index > 0) $(this).hide();
	    else $(this).show();
	    $(this).data('id', index);
	});
	
	$('.vidgrid a').each(function(index){
		$(this).data('id', index);
	});
	
	$('.vidgrid a').mouseover(function(e){
		var imgIndex = $(this).data('id');
		$images.each(function(index) {
		    if (index != imgIndex) $(this).hide();
		    else $(this).show();
		});
	});	
		
	$('.vidgrid a').click(function(e){

		if ($f() == null)
		{
			$f("vidgrid-video", {src: "/assets/flash/flowplayer/flowplayer.commercial-3.1.5.swf", cachebusting: $.browser.msie, onFail:noFlash}, {
				 key:"#@ce8d81197b82db4728a",
				 clip: conf.defaults,
				 plugins:{
				 	controls:conf.skins.gsw
				 }
			});
		}
		
		$f().play($(this).attr('href'));
		
		e.preventDefault();
		
	});
	
});
