$(document).ready(function() {
	menu();
	headerMenu();
	productSmall();
	toggleSearchValue();

	$('form[rel=ajax]').bind('submit', function(e) {
		e.preventDefault(); // <-- important
		$(this).ajaxSubmit({
			 target:	'#output',
			 dataType:	'json',
			 success:	responseHandler
		});
	});

	$('#content .mousetrap').live('click',function(){
		$(this).prev().trigger('click');
	});


	$('.header_menu')
		.find(':input')
			.mouseover(function() {
				$(this).parents('.header_menu_extended').show();
			});

});


