jQuery(function(){
	 $('.showPromotions').click(function(event){
	     event.preventDefault();
	     $(this).parent().children('div').show();
	     $(this).hide();
	   });
});
