﻿jQuery(document).ready(function(){
				
	//these are for the hover state of video images
	jQuery(".NewVidThumb a").hover(function(){
		jQuery(this).find(".PlayHover").show();
	},function(){
		jQuery(this).find(".PlayHover").hide();
	});
	
	jQuery(".VidItem a").hover(function(){
		jQuery(this).find(".PlayHover").show();
	},function(){
		jQuery(this).find(".PlayHover").hide();
	});
	
	jQuery(".ResultThumb a").hover(function(){
		jQuery(this).find(".PlayHover").show();
	},function(){
		jQuery(this).find(".PlayHover").hide();
	});
	
	jQuery(".jcarousel-item-horizontal a").hover(function(){
		jQuery(this).find(".PlayHover").show();
	},function(){
		jQuery(this).find(".PlayHover").hide();
	});
});