jQuery(function($) {
	$('.searchControls,.sortControls,.searchResults').show();
	
	$('.productDetailsLink').click(function(event){
		event.preventDefault();
		var d = $(this).attr('rel');
		//$('.productDetails').not($(this)).hide();
		$('#'+d).toggle('slow');
	});
	
	$('.productDetailsClose').click(function(event){
		event.preventDefault();
		$(this).parent().hide('slow');
	});
	
	$('.refineSearchLink').click(function(event){
		event.preventDefault();
		var d = $(this).attr('rel');
		$(this).children('.minus,.plus').not('.minus.active,.plus.notactive').toggle();
		$('#'+d).not('.active').toggle('slow');
	});
});
