$(document).ready(function(){

	$(".button").hover(function(){
		$(this).addClass("btnHover");
		},function(){
   		$(this).removeClass("btnHover");
	});

	$(".button_r").hover(function(){
		$(this).addClass("btnRHover");
		},function(){
   		$(this).removeClass("btnRHover");
	});

	$("a.photo").lightBox();

	$(".hover").hover(
		function(){$(this).addClass("hightlight");},
		function(){$(this).removeClass("hightlight");}
	);

	/*if ( $(window).height() < 600 ) {
		$(".cBody").animate({ 
			width: "955px"
		}, 700 );
		$(".siteLinks").animate({ 
			marginLeft: "937px",
			marginTop: "13px"
		}, 700 );
		$(".MenuBlue .addr").animate({ 
			paddingTop: "320px"
		}, 700 );
		$(".cBody .r2 .c2").animate({ 
			height: "500px"
		}, 700 );
		$(".pages").animate({ 
			marginTop: "370px",
			width: "570px"
		}, 700 );

		$(".designfolio").css({'float' : 'right', 'position' : 'relative', 'margin' : '-175px 30px 0 0'});
		$(".designfolio .folder").css({'float' : 'none', 'margin' : '0 20px 25px'});
		$(".mainArea .folio .item").css({'float' : 'left', 'height' : '72px', 'margin' : '10px 0', 'overflow' : 'hidden', 'width' : '325px'});

	};*/

});

