 $(document).ready(function() {
		

$(function() {
	var zIndexNumber = 1000;
	$('div').each(function() {
		$(this).css('zIndex', zIndexNumber);
		zIndexNumber -= 10;
	});
});


  /***search***/
 var sLabel = $('.searchField label').remove().text();
 $('#s').addClass('placeholder').val(sLabel).focus(function() {
																  
  if (this.value == sLabel) {
		  $(this).removeClass('placeholder').val('');
		  
  };
  
}).blur(function() {
if(this.value == '') {
  $(this).addClass('placeholder').val(sLabel);	
};
});

 });
 

							   
							 
							   
						
							   
							  
