// JavaScript Document
$(document).ready(function() {
			
			$('.carousel').elegantcarousel({
					delay:150,
					fade:300,
					slide:500,
					effect:'slide',					  
					orientation:'horizontal',
					loop: true,
					autoplay: true
			});
			
			$('.open_config').click(function() {
											 
				var display = $('.config_inner').css('display');
				if(display == 'none') { $('.config_inner').fadeIn(200); }								 
				if(display == 'block') { $('.config_inner').fadeOut(200); }	
				return(false);
			 });

			function center_main() {
				var window_height = $(window).height();
				var main_height = parseInt($('#main').css('height'));
				var main_height_margin = (window_height - main_height) / 2;
				$('#main').css('top',Math.floor(main_height_margin));
			}
			center_main();
		});	
