function portfolio() {
	$('#content-fullwidth-portfolio ul li a').hover(function() {
		$(this).children('.front').stop().animate({"opacity": ".4"}, 500);
	}, function() {
		$(this).children('.front').stop().animate({"opacity": "1"}, 500);
	});
}
function menu() {
	jQuery('ul.sf-menu li a').hover(function() {
		jQuery(this).stop().animate({ paddingLeft: '15px'}, {queue: false, duration: 200 })
	}, function() {
		jQuery(this).stop().animate({ paddingLeft: '0'})
	});
}
function header() {
	jQuery('#header').hover(function() {
		jQuery(this).stop().animate({ paddingLeft: '230px'}, {queue: false, duration: 400 })
	}, function() {
		jQuery(this).stop().animate({ paddingLeft: '0'})
	});
}
$(document).ready(function() {
	header();
	menu();
	portfolio();
});


