/*
 * Promotion page javascript.
 * $Id: promotions.js,v 1.1.4.2.2.1 2010-08-16 17:16:07 tvass Exp $
 */

/*
 * Called on load, taken from the core main.js
 */
$(function () {
	$('div.promotionTable div.header a').click(function(e){
		e.preventDefault();
		$(this).blur();
		$(this).parents('.promotionTable').find('table').toggle('fast');
		$(this).parents('.promotionTable').toggleClass('open');
		$(this).text($(this).text() == 'Show Details' ? 'Hide Details' : 'Show Details');
		});
	$('body.promotions #Body div.promotion div.section h3').click(function(){
		$(this).parent('.section').find('ul').toggle('fast');
		$(this).parent('.section').toggleClass('closed');
		}); 
});

