$(document).ready(function() {

	$('select[name="quantity"]').change( function(){
		this.form.submit();
	});
	
	$('select[name="jumpto"]').change( function(){
		window.location = $(this).val();
	});	
	
	$('.sort_desc').hover( function(){
		$(this).attr('src', '/images/results-price-ascending-over.gif');
		}, function(){
			$(this).attr('src', '/images/results-price-ascending.gif');
	});
	
	$('.sort_asc').hover( function(){
		$(this).attr('src', '/images/results-price-descending-over.gif');
		}, function(){
			$(this).attr('src', '/images/results-price-descending.gif');
	});
	
	$('.list_view').hover( function(){
		$(this).attr('src', '/images/results-view-icon-row-over.gif');
		}, function(){
			$(this).attr('src', '/images/results-view-icon-row.gif');
	});
	
	$('.gallery_view').hover( function(){
		$(this).attr('src', '/images/results-view-icon-col-over.gif');
		}, function(){
			$(this).attr('src', '/images/results-view-icon-col.gif');
	});


});

