$(document).ready(function() {
	additions();
	toggle();
	hover_hilite();
	complete();
});


function additions(){
	$('ul.sf-menu').superfish({ 
        delay:       250                          // one second delay on mouseout 
	});
	$("a[rel^='prettyPhoto']").prettyPhoto(); // makes lightbox work
}

function hover_hilite(){
	$('.footer-widget .social-links a:has(img)').fadeTo("fast","0.7");
	$('.footer-widget .social-links a:has(img)').hover(function() {
		$(this).stop().fadeTo("fast","1");
		}, function() {
		$(this).stop().fadeTo("fast","0.7");
	});
}

function toggle(){
	$('span.close').click(function() {
		$(this).parent().fadeOut(400);					   
	});
}
function complete(){
	$('ul.sf-menu').before('<div id="nav-finish"></div>');
}
