
$(window).load(function(){
	$('#subMenu li ul li:first').css('border','none');
});


//Document READY
$(document).ready(function(){

	/* Gallery Overlay */	
	$('.tx-chgallery-pi1 .single').mouseenter(function(){
		$(this).children().css('display','block');
	});
	
	$('.tx-chgallery-pi1 .single').mouseleave(function(){
		$('.tx-chgallery-pi1 .imghover').hide();
	});
	
	
	$('.tx-chgallery-pi1 .single').click(function(){
		$(this).children('a').click();
	});
	
	/* Lightbox prettyBox */
    $(".tx-chgallery-pi1 .single a").prettyPhoto({
    		theme: 'light_square',
    		ie6_fallback: true
   	 });

});

