// JavaScript Document   
	$("#form-contact").colorbox({iframe:true, innerWidth:420, innerHeight:450,escKey:true});
	$("#form-contact2").colorbox({iframe:true, innerWidth:420, innerHeight:450,escKey:true});
	$("#form-contact3").colorbox({iframe:true, innerWidth:420, innerHeight:450,escKey:true});
	$("#form-contact4").colorbox({iframe:true, innerWidth:420, innerHeight:450,escKey:true});
	$("#form-contact5").colorbox({iframe:true, innerWidth:420, innerHeight:450,escKey:true});
	$("#form-contact6").colorbox({iframe:true, innerWidth:420, innerHeight:450,escKey:true});
	$("#form-contact7").colorbox({iframe:true, innerWidth:420, innerHeight:450,escKey:true});
	$("#form-contact8").colorbox({iframe:true, innerWidth:420, innerHeight:450,escKey:true});
	$("#form-contact9").colorbox({iframe:true, innerWidth:420, innerHeight:450,escKey:true});
	$("#form-contact10").colorbox({iframe:true, innerWidth:420, innerHeight:450,escKey:true});
		   
	$( "#tabs" ).tabs({ fx: [{opacity:'toggle', duration:'fast'},   // hide option
					{opacity:'toggle',duration:'fast'}] }
					 //,{cookie: {expires: 1}}
	);

	$('input[type=text]').each(function() {
		var default_value = this.value;
		$(this).focus(function() {
			if(this.value == default_value) {
				this.value = '';
			}
		});
		$(this).blur(function() {
			if(this.value == '') {
				this.value = default_value;
			}
		});
	});

	ddsmoothmenu.init({
		mainmenuid: "navHeader", //menu DIV id
		orientation: 'h', //Horizontal or vertical menu: Set to "h" or "v"
		classname: 'navMenu', //class added to menu's outer DIV
		contentsource: "markup" //"markup" or ["container_id", "path_to_menu_file"]
	})



