jQuery.fn.rweStore = function () {
	
    return this.each(function() {
		
		var $ = jQuery, $this = this;
		
		this.viewProduct = function (evt) {
			
			var obj = evt.target;
			var num = $(obj).attr ('href');
			var desc = $($this).find ('input[name=desc]').val();
			var img = $('.store-product-icon', $this).find ('img').attr('src');
			
			return false;
			
		}
		
		$('.store-product-close-button', this).bind ('click', $this.viewProduct);
    });
};
