//<![CDATA[
$(document).ready(function() {
		   
	// rework simplified classes in document
	
	$("a[target='lightbox']").fancybox(); // Select all links with lightbox class and turn into lightbox views
	
	// shaded boxes
	var getShadedBoxColours=["search", "member", "sub_section", "newsletter", "news", "info", "footer"];
	for (getCounter = 0; getCounter < getShadedBoxColours.length; getCounter++)
	{
		$("." +	getShadedBoxColours[getCounter] + "_box").before("<div class=\"" +	getShadedBoxColours[getCounter] 
			+ "_box_top\"><div><div></div></div></div>");
		$("." +	getShadedBoxColours[getCounter] + "_box").after("<div class=\"" + getShadedBoxColours[getCounter] + "_box_bottom\"><div><div></div></div></div>");
		$("." +	getShadedBoxColours[getCounter] + "_box").wrap("<div class=\"" + getShadedBoxColours[getCounter] + "_box_main\"><div></div></div>")
		$("." +	getShadedBoxColours[getCounter] + "_box").removeClass(getShadedBoxColours[getCounter] + "_box");
	}
	
	// rounded box
	$(".rounded_box").wrap("<div class=\"roundedbox\"><div><div><div><div></div></div></div></div></div>")
	$(".rounded_box").removeClass("rounded_box");
	
	$("#admintabs").tabs();
	
        // initialise favourites area
        //get_FavouritesRefresh();
	
});
//]]>


