$(document).ready(function(){ 
		 $("ul.topnav li a").hover(function() {  
				$(this).parent().find("ul.subnav").show(); 
				$(this).parent().hover(function() {
					}, function(){
						$(this).parent().find("ul.subnav").hide();  
					}); 
			}).hover(function() {
				$(this).addClass("subhover");
			}, function(){	
						$(this).removeClass("subhover");
			}); 
			$('#filter_keyword').keydown(function(e) {
				if (e.keyCode == 13) {
					moduleSearch();
				}
			});
}); 
function moduleSearch() {
	url = 'index.php?route=product/search'; 
	var filter_keyword = $('#filter_keyword').attr('value') 
	if (filter_keyword) {
		url += '&keyword=' + encodeURIComponent(filter_keyword);
	} 
	var filter_category_id = $('#filter_category_id').attr('value');
	
	if (filter_category_id) {
		url += '&category_id=' + filter_category_id;
	} 
	location = url;
}
  $(document).ready(function(){
    $('#slider3').bxSlider({
	mode: 'fade',
	controls: false,
	auto: true,
	speed: 500,
	pause: 5000,
	pager: true
		});
  });
