$(document).ready(function(){

	var theWindow	= $(window),
		$bg			= $(".half"),
		aspectRatio	= $bg.width() / $bg.height();
			    			    		
	function resizeBg() {
		
		if ( (theWindow.width() / theWindow.height()) < aspectRatio ) {
			$bg
				.removeClass('bgwidth')
				.addClass('bgheight');
		} else {
			$bg
				.removeClass('bgheight')
				.addClass('bgwidth');
		}
		
		$(".scroll-pane").css({'height':(($(window).height())/3.6)+'px'});
		$(".scroll-pane").css({'width':(($(window).width())/2.5)+'px'});
		$("#main").css({'width':(($(window).width())/2.5)+'px'});
		$("ul#thumbs li").css({'height':(($(window).width())/18)+'px'});
		$("ul#thumbs li").css({'width':(($(window).width())/17)+'px'});
		$(".logo").css({'max-width':(($(window).height())/3.5)+'px'});
	}
			                   			
	theWindow.resize(function() {
		resizeBg();
	}).trigger("resize");
	
	jQuery("ul.sf-menu").superfish();
	
	$(".scroll-pane").jScrollPane();
	
	$("#thumbs").PikaChoose({carousel:true});
	
	$(".contact_form").validate();
});

