$(document).ready(function(){
    
	$("input.search").click(function() {
                $(this).focus();
                $(this).select();
            });

    if($('.productImageThumb').length){
        $('.productImageThumb').click(function(){
            $('.productImageMax').fadeOut('slow').attr('src', $(this).attr('href')).fadeIn('slow');
            return false;
        });
    }
	
	 $('#restaurantPhotos').hide();

	$('a#restPhoto').click(function(){
	$('#restaurantMenu').hide();
	$('#restaurantPhotos').fadeIn('slow');
	});

	$('a#restMenu').click(function(){
	$('#restaurantPhotos').hide();
	$('#restaurantMenu').fadeIn('slow');
	})

});
