$(document).ready(function(){
	$('.pcBackOrder').hide().fadeIn(3000);
	$('.pcBackOrderStatus').hide().fadeIn(2000);
	
	$('#accordion tbody tr:even').addClass('zebra');
	
	$('.ospTopMenu ul li:first').addClass('first');
	
	$('#ospSearchBoxTop .pcForms #submit').val('Search');
	
	//text input focus effect
	//$('input[type="text"],input[type="password"]').addClass("idleField");
	//$('input[type="text"],input[type="password"]').focus(function() {
	//	$(this).removeClass("idleField").addClass("focusField");
    //    if (this.value == this.defaultValue){
    //    	this.value = '';
    //	}
    //    if(this.value != this.defaultValue){
	 //   	this.select();
     //   }
    //});
    //$('input[type="text"],input[type="password"]').blur(function() {
//$(this).removeClass("focusField").addClass("idleField");
    //    if ($.trim(this.value == '')){
    //    	this.value = (this.defaultValue ? this.defaultValue : '');
    //	}
    //});
	
	// resize the search box
	$('#ospSearchBoxTop .pcForms input:text').attr('size', '28');
	
	//hover effect for search button
	$('#ospSearchBoxTop .pcForms #submit').hover(function(){
		$(this).addClass("ospButton");
	}, function(){

		$(this).removeClass("ospButton");
	});
	



	
	
});
