$(document).ready(function() {
    
	
	$('.getMoreDest').click(function() {
		if($('.togDate3').css("display") == "none") $('.getMoreDest').text("הורד נתיב");
		else $('.getMoreDest').text("הוסף נתיב");
	    $('.togDate3').slideToggle();
	});
    
    $('#footer ul li:nth-child(5n)').css('border','0');    

	//hotelInfoext gallery tabs
	$('div#thumb-navigation img').each(function() {
		var thisImgLink = $(this).attr('src');
		$(this).click(function() {
			$('div.stack div.tabHotel a img').attr('src' , thisImgLink.replace('/prev',''));
			$('div.stack div.tabHotel a').attr('href' , thisImgLink.replace('/prev',''));
		})
	});
	
	//searchPrice Tabs
	$('ul.radioPrice li:first').addClass('searchPriceActive');
	$('div.mainSearchPrice form:first').show();
	$('ul.radioPrice li').click(function() {
                $('ul.radioPrice li').removeClass('searchPriceActive');
		$('div.mainSearchPrice form').hide();
		if ($(this).hasClass('radionofesh')) {
			$('div.mainSearchPrice form.radionofesh').show();
			$('ul.radioPrice li.radionofesh').addClass('searchPriceActive');
		}
		else if ($(this).hasClass('radiocharters')) {
			$('div.mainSearchPrice form.radiocharters').show();
			$('ul.radioPrice li.radiocharters').addClass('searchPriceActive');
		}
	});	
    

});




    


