$(document).ready(function () {
    $('.top-menu-02 ul li').hover(
							  function () {
	$(this).find('.return').fadeIn('fast');
    },
								function () {
	$(this).find('.return').fadeOut('fast');
    });

});

//Select
$(function(){
			$('form').jqTransform({imgPath:'./jqtransformplugin/img/'});
		});











//Лайт бокс

//$(document).ready(function(){
//	$("a[rel^='prettyPhoto']").prettyPhoto();
//	});






// Ползунок


$(document).ready(function(){	
		// Demo 3
		$('#fiveId').trackbar(
			{
				onMove : function() {
				
				
				document.forms['searchform'].squar_before.value = this.leftValue;
				document.forms['searchform'].squar_after.value = this.rightValue;
				//	$.trackbar.getObject('sixId').updateLeftValue(this.leftValue);
				//	$.trackbar.getObject('sixId').updateRightValue(this.rightValue)
				},
				width : 240, // px
			//	leftLimit : 0, // unit of value
				leftValue : 30, // unit of value
				rightLimit : 1500, // unit of value
				rightValue : 60, // unit of value
				hehe : ":-)"
			},
			"fiveId"
		);
		$('#sixId').trackbar(
			{
				onMove : function() {
				document.forms['searchform'].price_before.value = this.leftValue;
				document.forms['searchform'].price_after.value = this.rightValue;
				//	$.trackbar.getObject('fiveId').updateLeftValue(this.leftValue);
				//	$.trackbar.getObject('fiveId').updateRightValue(this.rightValue)
				},
				width : 240, // px
			//	leftLimit : 0, // unit of value
				leftValue : 30000, // unit of value
				rightLimit : 5000000, // unit of value
				rightValue : 150000, // unit of value
				hehe : ":-)"
			},
			"sixId"
		);
	});

