( function( $ ){
	
	$.extend({
		bargainbin	: {
			confirmDelete	: function()
			{
				return confirm("Are you sure?");
			}
		}
	});
})(jQuery);

//set up the jquery stuff
$(document).ready(
	function(){
		
		$(".bargainBinImage").lightBox({
				imageLoading: '/store/assets/jquery/lightbox/images/loader.gif'
			, 	imageBtnClose: '/store/assets/jquery/lightbox/images/close.jpg'
		});
		
		$('input.valid-number').bind('keypress', function(e) {
			return ( e.which!=8 && e.which!=0 && (e.which<48 || e.which>57)) ? false : true ;
		});
});