
jQuery(document).ready(function($) {

/* Cufon Settings */
	Cufon.replace('.sidebar h3, h3, #single h4 , #single h2, .cufon-me, .logotext-foot');

/* Footer Settings */
	$("#footer .container_16").hide();
 
	$(".trigger").toggle(function(){
		$(this).addClass("active"); 
		}, function () {
		$(this).removeClass("active");
	});
	
	$(".trigger").click(function(){
		$(this).next("#footer .container_16").slideToggle("slow,");
	});


/* Navigation Settings */	

	$('ul.sf-menu').superfish({ 
		delay: 600, // delay on mouseout
		animation: {opacity:'toggle', height:'show'}, // fade-in and slide-down animation
		speed: 350, // faster animation speed
		autoArrows:false
	}); 

		
	
/* PrettyPhoto Settings */
	$("a[rel^='prettyPhoto']").prettyPhoto({
		animationSpeed: 'normal', // fast/slow/normal 
		padding: 40, // padding for each side of the picture 
		opacity: .90, // Value betwee 0 and 1 
		showTitle: false, // true/false 
		allowresize: true, // true/false
		counter_separator_label: '/', // The separator for the gallery counter 1 "of" 2 
		theme: 'dark_square', // light_rounded / dark_rounded / light_square / dark_square 
		callback: function(){}
	});



/* FADE-to Settings */

$(".social img").hover(function(){
	$(this).stop().animate({opacity: 1.0}, 400 );
},
function () {
	$(this).stop().animate({opacity: 0.5}, 300); 
});
	
$(".col1 img").hover(function(){
	$(this).stop().animate({opacity: 0.5}, 400 );
},
function () {
	$(this).stop().animate({opacity: 1.0}, 300); 
});


	

});


