$(document).ready(function(){
	$('.nav li').hover(
		function() { $('.drop', this).css('display', 'block'); },
		function() { $('.drop', this).css('display', 'none'); });

    $('a.max').zoomimage({
    	border: 10,
    	centered: true,
        caption: false
    });
});
