$(document).ready(function() {
       
    //img error
    $('.homeDealsBox , .topDealsBox').find('img').error(function() {
        $(this).attr('src','http://www.travellertours.co.il/templates/travellertours/images/space.gif');
    });
    
    //Hover Boxs
 /*   $('div.scrollBox').hover(
        function() {
            $(this).addClass('scrollBoxActive').children('p.scrollText').hide();
        },
        function() {
            $(this).removeClass('scrollBoxActive').children('p.scrollText').show();
        });
  */  
    //nofesh clickable Divs
    $('div.homeDeaslsInner div.homeDealsBox').each(function() {
            
            var thisLink = $(this).children('div.homeDealsImg').children('a').attr('href');
            $(this).click(function() {
                    window.location = thisLink;
            })
    });
    
    $('div.dealBoxMid').each(function() { $(this).children('p:last').css('border-bottom','1px dotted #c9c9c9') });
       
    
});
