$("document").ready( function()	{
	var h = $(document).height();
		$(".roll_bg").height(h);

		h = $(window).height();
		$(".container").height(h);
		
		h = $(".main").height();
		$(".side_menu").height(h);
});

$(window).resize(function()	{

	var h = $(document).height();
		$(".roll_bg").height(h);

		h = $(window).height();
		$(".container").height(h);
		
		h = $(".main").height();
		$(".side_menu").height(h);
	});



$(document).ready(function(){

	$(".catalog_item_img").each(function(){

		if( $(this).width() >= $(this).height()) 
		{
		$(this).width(155)
		}
		else 
		{
		$(this).height(144)
		}
	});
	
	$(document).ready(function(){
		$(".btn-slide").click(function(){
			$("#panel").slideToggle("slow");
			$(this).toggleClass("active"); return false;
		});
	});

	// מעלים רמה אחרונה של התפריט
	$(".sf-menu2").find("ul:not(:has(ul))").hide()
				  .end().find("li:has('ul:visible')").children('a').click(function(e){e.preventDefault()}) ;
		
		
	var originalTotal = parseInt($('#stotal').text());
	$('[name="ShippingID"]').change(function(){
		var selected = $(this).find(':selected');
		if(selected.val() == 0) {
			$('#stotal').text(originalTotal)
		} else {
			$('#stotal').text(originalTotal + parseInt(selected.attr('rel')))
		}
	})
	
	$('[name="Featuresnumber77"]').children().last().attr('selected','selected')
});
