  $(document).ready(function () {
  
    $('form#form-search input').keypress(function(e) {
        if(e.which == 13) {
            jQuery(this).blur();
            jQuery('#form-submit').focus().click();
        }
    });
  
  	$(".slider").mySlider({
            timeOut: 4000,
            captionOpacity: .7            
        });
	
	$('#mainmenu li').hover(
		function () {
			//show its submenu
			$('ul', this).slideDown(10);

		}, 
		function () {
			//hide its submenu
			$('ul', this).slideUp(10);			
		}
	);
	
	$("#largephoto").easySlider();
	
	$('#thumbs').jScrollPane({showArrows:true, scrollbarWidth:19});
  	$('#downarrow').hide();
  	$('#toparrow').hide();
	
	if ($('#productlist').height() > 462){
		$('#downarrow').show();
		$('#toparrow').show();
		
		$('#downarrow').click(function(){
			$('#scrollpane').stop().scrollTo( '+=115', 500 );
		});

		$('#toparrow').click(function(){
			$('#scrollpane').stop().scrollTo( '-=115', 500 );
		});
  		$('#scrollpane').bind('mousewheel', function(event, delta) {
			var dir = delta > 0 ? '-=' : '+=',
			vel = Math.abs(delta);
			$(this).scrollTo(dir + vel*10);
			return false;
		});
	}
	
	
	
	
	
});
