this.screenshotPreview = function(){	
	/* CONFIG */
		
		xOffset = 10;
		yOffset = 30;
		
		// these 2 variable determine popup's distance from the cursor
		// you might want to adjust to get the right result
		
	/* END CONFIG */
	$("a.screenshot").hover(function(e){
		this.t = this.title;
		this.title = "";	
		var c = (this.t != "") ? "<br/>" + this.t : "";
		$("body").append("<p id='screenshot'><img src='"+ this.rel +"' alt='url preview' />"+ c +"</p>");								 
		$("#screenshot")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px")
			.fadeIn("fast");						
    },
	function(){
		this.title = this.t;	
		$("#screenshot").remove();
    });	
	$("a.screenshot").mousemove(function(e){
		$("#screenshot")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px");
	});			
};

$(document).ready(function(){
	screenshotPreview();
	//открываем пункт меню в соответсвии с адресом
	var spath = document.location.pathname;
	spath_ar = spath.split('/');
	if ((spath_ar[1]=='catalogue' || spath_ar[1]=='articles') && spath_ar[2]) {
		$("ul[id*='_"+spath_ar[2]+"_']").slideToggle(500);
	}
	//add icons to pricelist
	$("a[href$=pdf]").addClass("pdf");
	$("a[href$=zip]").addClass("zip");
	$("a[href$=rar]").addClass("rar");
	$("a[href$=xls]").addClass("xls");
	
	//hide all message_body
	$(".message_list .message_body:0").show();
	$(".message_list .message_body:gt(0)").hide();
	
	//toggle message_body
	$(".message_head").click(function(){
		$(this).next(".message_body").slideToggle(500)
		//$(".collpase_all_message").show()
		return false;
	});
	
	$(".pane-list").click(function(){
    	window.location=$(this).find("a").attr("href");return false;
	});
});

