$(document).ready(function() {

    // catalog link
    

    // shops page click
    $('.shop_setsideimage').click(function(){
       newSrc = $(this).attr('rel');
       
       if (newSrc != '') {
           // apply
           $('.left_img img').attr('src','uploads/'+newSrc);
       }

    });
    
    // ref
    $('#ref').change(function(){
        var val = $(this).val();
        if (val == 'אחר') {
            $('.ref_other_wrap').fadeIn();
        }
        else {
            $('.ref_other_wrap').fadeOut();
        }
    });
    
    
    $('.menu_marked').click(function(){
      
    });

    $('.href_send2friend').click(function(){

       if ( $('#send2friend').is(':visible') == true ) {
            $('#send2friend').fadeOut();
       }  else {
            $('#send2friend').fadeIn();
       }
    });
});



