//Cufon font replacement
Cufon.replace('.slide_title, .content_slide_title', { fontFamily: 'Diavlo Medium' }); 


//Dropdown menu settings
$(document).ready(function() {
ddsmoothmenu.init({
	mainmenuid: "menu", //menu DIV id
	orientation: 'h', //Horizontal or vertical menu: Set to "h" or "v"
	classname: 'dd', //class added to menu's outer DIV
	//customtheme: ["#1c5a80", "#18374a"],
	contentsource: "markup" //"markup" or ["container_id", "path_to_menu_file"]
})
 });
 
 
//Images on hover animation
$(document).ready(function(){
$(".item, .fade, .img").fadeTo("slow", 1.0); // This sets the opacity of the thumbs to fade down to 30% when the page loads
$(".item, .fade, .img").hover(function(){
$(this).fadeTo("fast", 0.8); // This should set the opacity to 100% on hover
},function(){
							   
$(this).fadeTo("fast", 1.0); // This should set the opacity back to 30% on mouseout
});
});
	
	

