// JavaScript Document


// Fancy main menu pull down
$(document).ready(function() { 
	$('#mainmenu ul').superfish({
		animation:   {height:'show'},
		speed:       250,
		autoArrows:  false,
		dropShadows: false	
	}); 
}); 

// Add hover class to images for extra styling
$(function () {
	$('.clickhoverimage img, .large_image img').hover(function() {
		//$(this).fadeTo("fast", 0.6);
 		$(this).addClass('hover');
  
	}, function() {
		//$(this).fadeTo("fast", 1);
		$(this).removeClass('hover');
	});
	
});
