<!--
$(document).ready(
	function() {
		$('#stock')
		.focus(function(){ if(this.value=='Product Search') this.value='' })
		.blur(function(){ if(this.value=='') this.value='Product Search' })

                $('#stocksearchform')
                .submit(
                    function(){
                    	var str = $('#stock').val()
                        if(str.length < 3 || str == 'Product Search')
                            return false
                        else
                            return true
                    }
                )
	setTimeout("$('.indicator').fadeOut()", 3000)
	setTimeout("$('.indfailed').fadeOut()", 10000)
	
	$('form[id^="prodmindisp"]').submit(function(){
		var qid = '#qty' + $(this).attr('id').replace('prodmindisp', '')

		if($(qid).val() < 1) {
			alert('Please enter a quantity greater than zero')
			return false;
		}
		return true;
	})
}
	
);
-->

