 $(document).ready(function() {
$('#coda-slider-1').codaSlider({
											   
											dynamicTabs: false,
											autoSlide: true,
        									autoSlideInterval: 12000,
        									autoSlideStopWhenClicked: true
											   
											   });		

/*$(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);	
};
});

 });
 

							   
							 
							   
						
							   
							  
