// JavaScript Document
$(document).ready(function() {//start document ready function	
						   
						   
						   
						   
						   	$('#edit-search-theme-form-1').attr('value', 'Search help files');
  $('#edit-search-theme-form-1').focus(function () {
         if(this.value == "Search help files") this.value = "";  
    });
  $('#edit-search-theme-form-1').blur(function () {
         if(this.value == "") this.value = "Search help files";  
    });
  
  
  
  
  
						   $('#menuPanel').show();
						   $('#searchPanel').hide();
						   
	$('#buttContent').click(function() {
		 $(this).attr('class', 'menuBarSelected')
		 $('#buttSearch').attr('class', '')
		 $('#menuPanel').show();
						   $('#searchPanel').hide();
	})
	$('#buttSearch').click(function() {
		 $(this).attr('class', 'menuBarSelected')
		 $('#buttContent').attr('class', '')
		 $('#menuPanel').hide();
						   $('#searchPanel').show();
	})
	
	
	
	/*$('.form-submit').click(function() {
									 alert('shabba');
	$.post("sites/all/themes/greyscale/ajax.php", {         // url
			//ID : $(this).parents('tr').attr('id')
			},
function(results) {                                                                                          
$("#searchPanel").html(results);   
//alert(results);      // callback
})
			return false;						
								   })*/
})