// JavaScript Document$(function(){  settings = {          tl: { radius: 10 },          tr: { radius: 10 },          bl: { radius: 10 },          br: { radius: 10 },          antiAlias: true,          autoPad: true,          validTags: ["div"]      } $('.c_box,.c_box2').corner(settings);});$(function(){  settings = {          tl: { radius: 5 },          tr: { radius: 5 },          bl: { radius: 5 },          br: { radius: 5 },          antiAlias: true,          autoPad: true,          validTags: ["div"]      } $('h3').corner(settings);});$(function(){     $(".totop a").click(function(){     $('html,body').animate({ scrollTop: $($(this).attr("href")).offset().top }, 'slow','swing');     return false;     })});$(function(){     $(".totop_b a").click(function(){     $('html,body').animate({ scrollTop: $($(this).attr("href")).offset().top }, 'slow','swing');     return false;     })});$(document).ready(function(){				$("a[rel='example1']").colorbox();				$("a[rel='example2']").colorbox({transition:"fade"});				$("a[rel='example3']").colorbox({transition:"none", width:"75%", height:"75%"});				$("a[rel='example4']").colorbox({slideshow:true});				$(".example5").colorbox({width:"90%", height:"80%"});				$(".example6").colorbox({iframe:true, innerWidth:425, innerHeight:344});				$(".example7").colorbox({width:"90%", height:"80%", iframe:true});				$(".example8").colorbox({width:"50%", inline:true, href:"#inline_example1"});				$(".example9").colorbox({					onOpen:function(){ alert('onOpen: colorbox is about to open'); },					onLoad:function(){ alert('onLoad: colorbox has started to load the targeted content'); },					onComplete:function(){ alert('onComplete: colorbox has displayed the loaded content'); },					onCleanup:function(){ alert('onCleanup: colorbox has begun the close process'); },					onClosed:function(){ alert('onClosed: colorbox has completely closed'); }				});								$("#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;				});			});	$(document).ready(function() {		$('div#right_container').fadeIn(600);	});$(function(){     $(".form1").focus(function(){          if(this.value == "Name"){               $(this).val("").css("color","#000000");          }     });     $(".form1").blur(function(){          if(this.value == ""){               $(this).val("Name").css("color","#969696");          }     });});$(function(){     $(".form2").focus(function(){          if(this.value == "Mail"){               $(this).val("").css("color","#000000");          }     });     $(".form2").blur(function(){          if(this.value == ""){               $(this).val("Mail").css("color","#969696");          }     });});$(function(){     $(".form3").focus(function(){          if(this.value == "Subject"){               $(this).val("").css("color","#000000");          }     });     $(".form3").blur(function(){          if(this.value == ""){               $(this).val("Subject").css("color","#969696");          }     });});$(function(){     $(".search").focus(function(){          if(this.value == "Search"){               $(this).val("").css("color","#000000");          }     });     $(".search").blur(function(){          if(this.value == ""){               $(this).val("Search").css("color","#969696");          }     });});
