//<![CDATA[
$(document).ready(function() {
		   
	// rework simplified classes in document
	
	$("a[target='lightbox']").fancybox({
		'titlePosition'	:	'inside'
	}); // Select all links with lightbox class and turn into lightbox views
	
	// shaded boxes
	var getShadedBoxColours=["blue", "white", "pink", "mustard", "orange", "green", "blueyell"];
	for (getCounter = 0; getCounter < getShadedBoxColours.length; getCounter++)
	{
		$("." +	getShadedBoxColours[getCounter] + "_shaded_box").before("<div class=\"" +	getShadedBoxColours[getCounter] 
			+ "_shaded_box_top\"><div><div></div></div></div>");
		$("." +	getShadedBoxColours[getCounter] + "_shaded_box").after("<div class=\"" + getShadedBoxColours[getCounter] + "_shaded_box_bottom\"><div><div></div></div></div>");
		$("." +	getShadedBoxColours[getCounter] + "_shaded_box").wrap("<div class=\"" + getShadedBoxColours[getCounter] + "_shaded_box_main\"><div></div></div>")
		$("." +	getShadedBoxColours[getCounter] + "_shaded_box").removeClass(getShadedBoxColours[getCounter] + "_shaded_box");
	}
	
	
	// check depth of main text
	if ($("#mainbodyleft").height() > 1050)
	{
		$("#articlelistextra").show();
	}
	
	
});
//]]>


