$(document).ready(function(){
	
	$('.comment_text,.comment_reply_text').corner("cc:#5BC4BD");


// ====================================== 
// ! initialize smooth anchor scrolling   
// ====================================== 
						   
	$.localScroll(2500,{easing:'elasout'});


// ===================================== 
// ! apply png transparency fix for IE   
// ===================================== 

	$('img[src$=.png]').ifixpng();


// ======================================== 
// ! make header logo a link to home page   
// ======================================== 
	
	$('#header h1').click(function(){
		location.href='index.php';
		return false;
	});


// ====================================== 
// ! apply animation to main navigation   
// ====================================== 
	
	$('.menu_arrow').animate({ 
        opacity: 0.0,
        marginTop: "100px"
      }, 0 );
    
    $('#page_2,#page_3,#page_4,#page_5').css( {backgroundPosition: "0 0"} )  
    $('#page_1').css( {backgroundPosition: "-15px 0px"} )
	
	$('#page_1').click(function(){
		$(this).stop().animate({backgroundPosition:"(-15px 0px)"}, 500);
		$('#page_2,#page_3,#page_4,#page_5').stop().animate({backgroundPosition:"(0 0)"}, 500);
		$('#menu_arrow').animate({marginTop: "10px" }, 500 );
		$('#menu_scroll_wrap').animate({marginLeft: "0px" }, 500 );
	});
	$('#page_2').click(function(){
		$(this).stop().animate({backgroundPosition:"(-15px 0px)"}, 500);
		$('#page_1,#page_3,#page_4,#page_5').stop().animate({backgroundPosition:"(0 0)"}, 500);
		$('#menu_arrow').animate({marginTop: "42px" }, 500 );
		$('#menu_scroll_wrap').animate({marginLeft: "-530px" }, 500 );
	});
	$('#page_3').click(function(){
		$(this).stop().animate({backgroundPosition:"(-15px 0px)"}, 500);
		$('#page_1,#page_2,#page_4,#page_5').stop().animate({backgroundPosition:"(0 0)"}, 500);
		$('#menu_arrow').animate({marginTop: "72px" }, 500 );
		$('#menu_scroll_wrap').animate({marginLeft: "-1060px" }, 500 );
	});
	$('#page_4').click(function(){
		$(this).stop().animate({backgroundPosition:"(-15px 0px)"}, 500);
		$('#page_1,#page_2,#page_3,#page_5').stop().animate({backgroundPosition:"(0 0)"}, 500);
		$('#menu_arrow').animate({marginTop: "103px" }, 500 );
		$('#menu_scroll_wrap').animate({marginLeft: "-1590px" }, 500 );
	});
	$('#page_5').click(function(){
		$(this).stop().animate({backgroundPosition:"(-15px 0px)"}, 500);
		$('#page_1,#page_2,#page_3,#page_4').stop().animate({backgroundPosition:"(0 0)"}, 500);
		$('#menu_arrow').animate({marginTop: "133px" }, 500 );
		$('#menu_scroll_wrap').animate({marginLeft: "-2120px" }, 500 );
	});



});