// JavaScript Document

	$(document).ready(function(){
			$(".help").colorbox({iframe:true, innerWidth:800, innerHeight:500});
		
			$('form').submit(function() { 
					$.blockUI({ 
					 message: $('#loading'),
					 css: { 
						border: 'none', 
						padding: '15px', 
						backgroundColor: '#fff', 
						'-webkit-border-radius': '5px', 
						'-moz-border-radius': '5px', 
						opacity: .9, 
						width: '160px'
					} }); 
			});
			
			$(".boxed").colorbox({iframe:true, top: 50, innerWidth:820, innerHeight:"90%"});
			
			$(".boxed_reload").colorbox({iframe:true, top: 50, innerWidth:820, innerHeight:"90%", onClosed:function(){ document.location.reload(true);/*document.getElementById("content_frame").contentDocument.location.reload(true);*/ }}); 
				
		}); 
