$(document)
.ready(function(){
	var moreInfoDiv = $('#moreInfoDiv');
	var wrapDiv = $('.wrap');
	var bgDiv = $('.bg');
	$('#moreInfo')
	.click(function(){
		
		
		if( moreInfoDiv.data("opened") != "yes" ){
			moreInfoDiv.data("opened", "yes")
			.stop()
			.animate({top:0},100);
			
			bgDiv
			.stop()
			.animate({marginTop:400},100);
			/*wrapDiv
			.stop()
			.animate({paddingTop:555},100);*/
			
		}
		else{
			moreInfoDiv.data("opened", "no")
			.stop()
			.animate({top:-400},100);
			bgDiv
			.stop()
			.animate({marginTop:0},100);
			/*wrapDiv
			.stop()
			.animate({paddingTop:155},100);*/
			
		};
		
		return false;
	});
});