$(function() {
	$.supersized({
		slideshow            : 1,
		autoplay					   : 1,
		start_slide          : 1,
		random					     : 0,
		slide_interval       : 5000,
		transition           : 1,
		transition_speed	   : 1050,
		new_window			   	 : 0,
		pause_hover          : 0,
		keyboard_nav         : 0,
		performance				   : 3,
		min_width		         : 1024,
		min_height		       : 768,
		image_protect				 : 0,
		image_path				   : '/images/',
		vertical_center      : 1,
		horizontal_center    : 1,
		fit_portrait         : 0,
		fit_landscape			   : 0,
		navigation           : 1,
		thumbnail_navigation : 0,
		slide_counter        : 1,
		slide_captions       : 1,
		slides 							 : slides
	});
	
	$('.showContact').toggle(function() {
		$('#contact').slideDown(200);
	},function() {
		$('#contact').slideUp(200);
	});
});
