// JavaScript Document
$(document).ready(function() {
	/*Input fields is contact form*/
	$('.CONTACT_FORM input').focus(function(){
		if ($(this).val()=='שדה חובה' || $(this).val()=='ערך לא חוקי, אנא הזן שוב' || $(this).val()=='קוד שגוי.'){
			$(this).attr('value','').css('color','black');
		}
	});
	$(".ADDCART").hover(function() {
		
		$(this).find("img").attr("src","images/addtocarticon_h.png");
		
	},function() {
		
		$(this).find("img").attr("src","images/addtocarticon.png");
	});
	
	//$(".DIALOGO").draggable();
	$(".DIALOGEXIT").click(function() {
		$(".DIALOGO").hide();
	});
	$(".DIALOGO").css('position','absolute');
	$(".LOGINSPAN").click(function() {
		$(".DIALOGO").show();
	});

	var counter = $(".SWITCH").find(".SCROLLPROD").length;
	$('.SCROLLSIDER').click(function(){
		$(".SWITCH").append( $(".SWITCH").find(".SCROLLPROD:eq(0)") );	
	});
	$('.SCROLLSIDEL').click(function(){
		$(".SWITCH").prepend( $(".SWITCH").find(".SCROLLPROD:eq("+(counter - 1)+")") );	
	});
	
	$(".SHOWFRIEND").click(function() {
		$(".SENDFHIDE").show();
	});
	
	

	$( '#FIXED' ).scrollFollow({relativeTo: 'top'});
	
	$('.LEFT').css('height',$(".LISTTABLE").height());
	
	$(".SHIPMENT_OPEN").click(function() {
		$(".SHIPCLOSE").show();
		$(".SHIPCLOSE1").hide();
		$(".NUMBER3").text("3");
		$(".NUMBER4").text("4");
	});
	$(".SHIP1").click(function() {
		$(".SHIPCLOSE").hide();
		$(".SHIPCLOSE1").show();
		$(".NUMBER3").text("2");
		$(".NUMBER4").text("3");
	});
	
	$(".MENU ul li").hover(function() {
		$(this).find("ul").css("display","block");		
	}, function() {
		$(this).find("ul").css("display","none");
	});

	
});
