$(document).ready(function() {
						   
	//IE PNG FIX					   
	$("ul li a").addClass("png_img");
	$("#content.home").addClass("png_img");
	$("#page-header h2").addClass("png_img");

	//Slide down NAV
	$("#nav li").hover(function(){
            $(this).find("ul").stop(true, true).slideDown(500)
        }, function() {
            $(this).find("ul").stop(true, true).slideUp(500)
    });
	
	//Expand large images on roll over
	$("div.expandable").hover(function(){
		   $(this) .stop()
        .css('z-index','99')
        .animate({
          height: $(this).find('img').height()
        },1000);

		}, function() {
		  $(this) .stop()
        	.css('z-index','99')
	        .animate({
    	      height: '150px'
        },1000);
 
	});
	
	//Append Arrow to large slide down boxes
	$("div.expandable").append("<div class='arr png_img'></div>");
		
	$(".panel a").hover(function() {
			$(this).css('opacity','.75');								 
		 }, function() {
			$(this).css('opacity','1');									 
	 });
	
	//Disable right click on images
    $(window).bind("contextmenu",function(e){
        return false;
    });

	


		
		//{
//		$(this).find("ul").stop().slideToggle(500);
	//});

});