			//This hides the inline content if JavaScript is supported.
			document.write("<style type='text/css'>.hidden{display:none;}<\/style>");
			
			$(document).ready(function(){
				//Examples of Global Changes
				$.fn.colorbox.settings.opacity = "0.45";

				//Examples of how to assign the ColorBox event to elements.
				$("div.contentPics a.thickbox").colorbox({transition:"elastic", contentCurrent:"Image {current} of {total}"});
				$("#contentPics a.thickbox").colorbox({transition:"elastic", contentCurrent:"Image {current} of {total}"});
				$("a.thickbox.contactLink").colorbox({width:"620px", height:"550px", iframe:true});
				$("p a.LinkNotImage").colorbox({width:"620px", height:"550px", iframe:true});
				$("a.thickbox").colorbox({transition:"elastic", contentCurrent:"Image {current} of {total}"});

				//this duplicates the close function on another link
				  colorbox_close = function(){
    			$("#modalClose").click();
  				};  

				//the following hides any broken picture links from the colorbox
				$("img.thumbPic[src='http://www.xavierriley.co.uk/afs/morepicssoon.gif']").css("display", "none");
				$("a.thickbox[href='']").remove();

				//this gives the large mmo cover view
				$('td.publishingtableimg img').colorbox({width: '620px', height: '550px'});
			



});
