// JavaScript Document

	(function($){ 
$(document).ready(function(){

$('.navPan ul li').hover(
function () {
$(this).children('a:first').addClass('active');
$(this).children('.dropSec').fadeIn('fast');
},
function () {
$(this).children('a:first').removeClass('active');
$(this).children('.dropSec').fadeOut();
}
);
});
	})(jQuery);
	
	

	(function($){ 
	$(document).ready(function(){
		$('.galleryboxTop > ul > li:last-child').addClass('last');
    });
	})(jQuery);

