
		$(document).ready(function(){

			$(".example1").colorbox({width:"50%", inline:true, href:"#inline_example1"});
			$(".banco").colorbox({width:"50%", inline:true, href:"#banco1"});
			$(".union").colorbox({width:"50%", inline:true, href:"#union1"});
			$(".money").colorbox({width:"50%", inline:true, href:"#money1"});
			$(".example2").colorbox({width:"80%", height:"80%", iframe:true});
			//$(".example3").colorbox({width:"50%", inline:true, href:"#inline_example1"});
			
			//Example of preserving a JavaScript event for inline calls.
			$("#click").click(function(){ 
				$('#click').css({"background-color":"#f00", "color":"#fff", "cursor":"inherit"}).text("Open this window again and this message will still be here.");
				return false;
			});
		});
	


