$(document).ready(function() {
	// make navigation menu work
	$('#nav-main li ul').hide();
	
	$('#nav-main>li').hover(function(ev){
		$(this).children('ul').show();
	}, function(ev){
		$(this).children('ul').hide();
	});
	
	$('input#keywords').focus(function(ev){
		$(this).removeClass('focus').addClass('focus');
	}).blur(function(ev){
		if($(this).val() == 'Search...' || $(this).val() == ''){
			$(this).removeClass('focus');
		}
	});
	
	$('input#price_under200').click(function(){
		$('input#cf_product_rrp-from').val(0);
		$('input#cf_product_rrp-to').val(300);
	});
	
	$('input#price_200300').click(function(){
		$('input#cf_product_rrp-from').val(200);
		$('input#cf_product_rrp-to').val(400);
	});
	
	$('input#price_300400').click(function(){
		$('input#cf_product_rrp-from').val(300);
		$('input#cf_product_rrp-to').val(500);
	});
	
	$('input#price_400500').click(function(){
		$('input#cf_product_rrp-from').val(400);
		$('input#cf_product_rrp-to').val(600);
	});
	
	$('input#price_over500').click(function(){
		$('input#cf_product_rrp-from').val(500);
	});
	
	$('input#price_all').click(function(){
		$('input#cf_product_rrp-from').val('');
		$('input#cf_product_rrp-to').val('');
	});
});
