/* Input Field Text Value...
-----------------------------------------------------*/
$(document).ready(function() { 
  $('input[type = text]').focus(function(){ 
    if($(this).val() == $(this).attr('defaultValue'))
    {
      $(this).val('');
    }
  });
  
  $('input[type = text]').blur(function(){
    if($(this).val() == '')
    {
      $(this).val($(this).attr('defaultValue'));
    } 
  });
});


/* Dynamic Sidebar Tabs...
-----------------------------------------------------*/
$(document).ready(function(){
	var tabContainers = $('div.tabbers > div');
	
	$('div.tabs ul.tabNavigation a').click(function () {
		tabContainers.hide().filter(this.hash).fadeIn('slow');
		    
		$('div.tabs ul.tabNavigation a').removeClass('a-on');
		$(this).addClass('a-on');
		    	    	    
		return false;
	}).filter(':first').click();
});


/* Simple Fade Effect...
-----------------------------------------------------*/
$(function () {
  $('.fade').hover(function() {
    $(this).fadeTo("slow", 0.75);
  }, function() {
    $(this).fadeTo("slow", 1);
  });
});