var name = "#right_about_cont";
var menuYloc = null;

$(document).ready(function() {
	
	$('a.zoom').fancyZoom();
	
	$(".work_thumb a").hover(function() {
		$("img", this).stop().animate({top:"-30px"},{duration:250});
	}, function() {
		$("img", this).stop().animate({top:"0px"},{duration:500});
	});
	
	menuYloc = parseInt($(name).css("top").substring(0,$(name).css("top").indexOf("px")))
	$(window).scroll(function() {
		var offset = menuYloc+$(document).scrollTop()+"px";
		$(name).animate({top:offset},{duration:500,queue:false});
	});
	
});
