/******************************************************************/
/*	Gallery Image Hover 									      */
/******************************************************************/

$(document).ready(function () {

	
$('.galleryimg,.shortcodeimg,.shortcodevid,.galleryvid').hover(
		
		//Mouseover, fadeIn the hidden hover class	
		function() {
		$(this).children('div').css('display', 'block'); // FIX IE BUG	
		$(this).children('div').fadeTo("slow",0.6);
				
		}, 
	
		//Mouseout, fadeOut the hover class
		function() {
		$(this).children('div').fadeTo("fast",0, function() {
		});
		
		
	});


});
/******************************************************************/
/*	Gallery Image Hover *END*								      */
/******************************************************************/

