// JavaScript Document

	$(function(){

/*-------------------------------
- All Sections
-------------------------------*/

//----- Clear/Format Search Box onFocus -----*/
		$('#siteSearch .form-text').focus(function(){
			if($(this).attr("value") == 'Search....'){
				$(this).attr("value","");
				$(this).css("font-style","normal");
				$(this).css("color","#000");
			}
		});


//----- Top/Footer Navigation -----*/

		// clear last option's divider bar
		$('#navWrap li:last').css('background','none');
		$('#footerWrap li:last').css('background','none');


//----- Tab Navigation -----*/
	
		// Determine slide speed
		var speedup = 400;
		var speeddown = 400;
	
		// Make Tabs into sliders
		$('.slider').hover(function(){
			$(this).stop().animate({
				top: "0px"
			}, speedup );
		}, function(){
			$(this).stop().animate({
				top: "75px"
			}, speeddown );
		})
		
		// Make tabs into links
		

//------------------------------------------------

		//----- HOME PAGE -----



//------------------------------------------------

	
//------------------------------------------------
//----- END JQUERY READY -----*/
	});