// JavaScript Document

$(document).ready(function(){
		
	$("body").addClass("js");
	Cufon.replace('h1');
	
	/*Search OC*/
	var startingText = "Search OC";
	
	$("#box:input").attr("value", startingText).focus(function () {
		var currentText = $(this).attr("value");
		if (currentText == startingText){
			$(this).attr("value", '');
		}
		
	}).blur(function () {
		var currentText = $(this).attr("value");
		if (currentText == undefined){
			$(this).attr("value", startingText);
		}
	});		
	/*End of Search OC*/
	
	  /*Accordion Menu*/
	  $("#menu > li > a:not('.noarrow')").click(function(e){
		$(this).next().slideToggle("slow");
		e.preventDefault();
	 });
	 /*End of Accordion Menu*/	
	
});

