//This hides the inline content if JavaScript is supported.
	document.write("<style type='text/css'>.hidden{display:none;}<\/style>");
	
	jQuery(document).ready(function(){
		//Examples of Global Changes
		jQuery.fn.colorbox.settings.bgOpacity = "0.9";

		//Examples of how to assign the ColorBox event to elements.
		jQuery("a[rel='fade']").colorbox({transition:"fade"});
		jQuery("a[rel='elastico']").colorbox({transition:"elastic"});
		jQuery(".colorbox").colorbox({transition:"none", fixedWidth:"75%",fixedHeight:"75%", initialWidth:"75%", initialHeight:"75%"});
		jQuery("a.single").colorbox({}, function(){
			alert('Howdy, this is an example callback.');
		});
		jQuery("a[title='Apresentação Institucional']").colorbox();
		//jQuery("#flash").colorbox({href:"../content/flash.html"});
		//myId
		jQuery("a[href='http://google.com']").colorbox({fixedWidth:"80%", fixedHeight:550, iframe:true});
		jQuery("#inline").colorbox({fixedWidth:"50%", inline:true, href:"#inline_example"});

		//Example of preserving a JavaScript event for inline calls.
		jQuery("#click").click(function(){ 
			jQuery('#click').css({"background-color":"#f00", "color":"#fff", "cursor":"inherit"}).text("Open this window again and this message will still be here.");
		});
	});
