$(document).ready(function(){
    
	// Set start value
	$(".priceListMod dl").hide();
	$(".priceListMod dd").hide();
	$(".priceListMod h2").wrapInner("<span></span>");
	$(".priceListMod dt").wrapInner("<span></span>");
	
	// Set toggle animation
	$(".priceListMod h2").click(toggleView);	
	$(".priceListMod dt").click(toggleView);
	
	//$("div.overout").mouseover
});

/**
 *	Toggle View
 */
function toggleView() {
	$(this).next().animate({height: 'toggle'}, "500", "easeOut");
	$("#content-pages").height("auto");
	//console.log($("#content-pages").height());
	$(this).toggleClass("expand");
}

