jQuery(document).ready(function($) {
    // $() will work as an alias for jQuery() inside of this function
	$(".product_cell .product_cell:even").addClass("even");


	$('.wpsc_buy_button').click( function(e) {
//		console.log(this);
		$(this).prev('.wpsc_loading_animation').css('visibility','visible');
	});


});

