$(function(){
//	$("a.single_image").fancybox();
	sc_anim();
/*
	$("a#order_btn").fancybox(		
		{
			'type'  : 'iframe',
			'width' : 650,
			'height': 600
		}
	);
*/
});


function sc_anim(){
	jQuery.easing.quart = function (x, t, b, c, d) {
	    return -c * ((t=t/d-1)*t*t*t - 1) + b;
	};  

    $('.totop a').bind("click",function (event) {
		event.preventDefault();
		var target_name = $(this).attr("href") ;
		var target_top =  $(target_name).offset();
		//alert(  target_top.top );
        $('html,body').animate({ scrollTop: target_top.top }, 1000, 'quart');
    });
}
