$(document).ready(function() {
	$('.hozbreak-top a').click(function(){
		 $('html, body').animate({scrollTop: '0px'}, 300);
		 return false;
	});
});

moveShare = function() {
	$("#tryitnow-panel").stop();
	$("#contactus-panel").stop();

	offset = ($(window).height() / 2) - $("#tryitnow-panel").height() / 2;
	
	$("#tryitnow-panel").css('position', "absolute");
	$("#contactus-panel").css('position', "absolute");

	$("#tryitnow-panel").animate({
		"top" : $(window).scrollTop() + offset + "px"
	}, 1000, "easeOutQuint").css("right",  "-" + $(window).scrollLeft() + "px");

	$("#contactus-panel").animate({
		"top" : $(window).scrollTop() + offset + "px"
	}, 1000, "easeOutQuint").css("right",  "-" + $(window).scrollLeft() + "px");

};
$(window).scroll(moveShare).resize(moveShare);
$(window).scroll();


