$(document).ready(function() {

//	jQuery('#cycle').cycle({
//		fx: 'fade'
//	});

//	jQuery('figure.gallery-item a').attr('rel','gallery');
//	jQuery('figure.gallery-item a[rel="gallery"]').fancybox();
	$(window).bind("resize", backgroundImage);
	backgroundImage();
});

function backgroundImage(){
	windowWidth = $(window).width();
	doc = $(document).height();
	//alert(win + " " + doc);
	//if(win >= doc){
		//$("html body").height(doc);
		$("#wrap.container").height(doc);
		//$("html body").width(windowWidth);
	//}else{
	//	$("#wrap.container").height("inherit");
	//}
}

