//DROPDOWN MENU INIT
ddsmoothmenu.init({
mainmenuid: "topMenu", //menu DIV id
orientation: 'h', //Horizontal or vertical menu: Set to "h" or "v"
classname: 'ddsmoothmenu', //class added to menu's outer DIV
//customtheme: ["#1c5a80", "#18374a"],
contentsource: "markup" //"markup" or ["container_id", "path_to_menu_file"]
})

$(document).ready(function(){
							
	 
// POST BOXES HOVER BEHAVIOUR

$('#content .postBoxInner').hover(function(){
	$(this).toggleClass('postBoxInnerHover');
	}); 
$('.postBox a.readMore').hover(function(){
	$(this).prev('.postBoxInner').toggleClass('postBoxInnerHover');
	}); 

// AJAX CONTACT FORM INIT

 $('#contact').ajaxForm(function(data) {
		 if (data==1){
			 $('#success').fadeIn("slow");
			 $('#bademail').fadeOut("slow");
			 $('#badserver').fadeOut("slow");
			 $('#contact').resetForm();
			 }
		 else if (data==2){
				 $('#badserver').fadeIn("slow");
			  }
		 else if (data==3)
			{
			 $('#bademail').fadeIn("slow");
			}
			});

});
