/*
 *	Set-up generic UI interactions that may be present on any screen.
 */
 
//Set our stock count callback key.
var STOCK_COUNT_KEY = "se_na_re_pr";
	
$(document).ready(function()
{		
	//Set our correct accordion height on initial load.
	$(".ui-accordion > li.selected > a.header").next().height("250px");
		
	//Set our correct accordion height on change.
	$(".ui-accordion > li > a.header").load(
	function()
	{
		$(this).next().height("250px");
	});	
});



