// JavaScript Document
$(document).ready(function() {
	
	$(".HOME").hover(function() {
		$(this).find('img').attr("src","images/home.png");
	},function() {
		$(this).find('img').attr("src","images/home2.png");
	});
	/*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();
	});
	

	
	$(".FASQ").click(function() {
		$(this).siblings(".FASN").slideToggle();
		$(this).siblings(".FCLOSE").slideToggle();
	});
	$(".FCLOSE").click(function() {
		$(this).siblings(".FASN").hide();
		$(this).hide();
		$(".POPUP").hide();
	});
	
	$(".OPENPOP").click(function() {
		$(".FCLOSE").fadeIn();
		$(".POPUP").fadeIn();
		$(".POPUP form").append($(this).siblings("input"));
		
	});
	
	$(".SUBMITFILE").click(function() {
		//document.open("file.html");
	});
	
	$(".AWRDR").each(function() {
		setInterval(function(){
							var item1 = $(this).find("img").eq(0);							
							item1.hide();							
							$(this).find("img:last").append(item1);
							$(this).find("img").eq(4).show();	
	
		},10000);
	});
	
});
