$(document).ready(function() {
	$('a[ @href*="#"]:not(a.read-more-link) ').click(function() {
		scroll(this,-50);
		return false;
	});
	$('a.read-more-link').click(function() {
		$('.item-details').fadeIn('fast');
		$(this).hide();
		return false;
	});
});
function scroll(obj,offset){
	if(location.pathname.replace(/^\//,'')==obj.pathname.replace(/^\//,'') && location.hostname==obj.hostname){
		var jQuerytarget=jQuery(obj.hash);
		jQuerytarget=jQuerytarget.length&&jQuerytarget||jQuery('[name='+obj.hash.slice(1)+']');
		if(jQuerytarget.length){
			var targetOffset=jQuerytarget.offset().top+offset;
			jQuery('html,body').stop().animate({scrollTop:targetOffset},500,'swing');
			return false;
		}
	}
}
