jQuery(function(){
				
//-------- DROP DOWN MENU -------------//	
	jQuery('ul.sf-menu').superfish({ 
           
            delay:     1200 ,
			autoArrows:  false,
            dropShadows: false    
        });

//-------- AJAX CONTACT FORM -------------//	
	$('#ajaxform').ajaxForm({
	target: '#log',
	success: function(responseText) 
	{
		var x = $('div.success').text().length;
		if(x>0) $('#ajaxform').slideUp('slow');	
	}
	});
//-------- FEATURED SECTION SLIDESHOW -------------//	
	$('#loopedSlider').loopedSlider({
		slidespeed: 6000,
		 autoStart: 3000
 	});

//-------- TOGGLE BOXES -------------//	
	$(".toggle-body").hide();    
	$(".toggle-head").click(function()
	  {
		var tb = $(this).next(".toggle-body");

		if (tb.is(':hidden')) {
			tb.slideDown('200');
			$(this).children('.toggle-icon').html('<img src="images/down.png" alt="" />');	
		} else {
			tb.slideUp('200');
			$(this).children('.toggle-icon').html('<img src="images/plus.png" alt="" />');				
		}
	  });
	
			
			
});// end initiating


