$(document).ready(function(){
	/*
	
			eraser
	
	*/
/*
	$('.eraser').each(function(){
		$(this).attr('original',$(this).val())
	});
	
	$('.eraser').focus(function(){
		if ($(this).val() == $(this).attr('original')) {
			$(this).val('');
		}
	}),
	
	$('.eraser').blur(function(){
		if ($(this).val() == '') {
			$(this).val($(this).attr('original'));
		}
	}); 
	
*/
	
	
	/*
	
			header dropdowns
	
	*/
	$('#brand_id_dd').change(function(){
		var val = $(this).val().split('_');
		
		window.location = '/browse.php?brand=' + val[1] + '&genre=' + val[0];
	});

	$('.category_id_dd').change(function(){
		window.location = '/browse.php?subgenre=' + $(this).val();
	});
});
