// JavaScript Document

$(function(){
	$('#searchPN').keyup(function(e){
		if(e.keyCode == 13) {
			window.location = 'products.php?pn='+$(this).val();
		}
	});
	
	$('#searchPN').focus(function(){
		if ($(this).val() == 'Search by part #') {
			$(this).val('');
		}
	});
	
	$('#searchPN').blur(function(){
		if ($(this).val() == '') {
			$(this).val('Search by part #');	
		}
	});
});
