/* Fade Out and Fade In Effect */
$(function () {
	$("#social img").css("opacity", "0.6");

	$("#social img").hover(function () {
		$(this).stop().animate({
			opacity: 0.4
		}, "fast");
	},

	function () {
		$(this).stop().animate({
			opacity: 0.6
		}, "fast");
	});
});

/* Images Slideshow Settings */
$(function() {
	$('#slideshow').cycle();
});

/* Hide Header If empty */
$(document).ready(function() {
	if ($('#logo').is(':empty') && $('#social').is(':empty')) {
		$('#header').hide();
	}
	else {
		$('#header').show();
	}
});
