jQuery(document).ready(function($) {

       $('#coda-slider-1').codaSlider({
           dynamicArrows: true,
           dynamicTabs: false
       });

$(".nav li:last-child").css({borderBottom: "none"});
			

 /***In Field Labels***/
 $('#sideContact p').each(function() {
 
var tLabel = $(this).children('label').remove().text()
 
 $(this).children('input["text"] , textarea').addClass('placeholder').val(tLabel).focus(function() {
																  
  if (this.value == tLabel) {
		  $(this).removeClass('placeholder').val('');
		  
  };
  
}).blur(function() {
if(this.value == '') {
  $(this).addClass('placeholder').val(tLabel);	
};
});
 
 $(this).parent().submit(function () {  
				
				if($('#email').val() == 'Email')
				{
				$('#email').val('');
				
				}
				
				
				}); /* Make sure that form doesnt submit label string (email) */
 
 
}); 
 
 /*$(function() {
	var zIndexNumber = 1000;
	$('div, ul').each(function() {
		$(this).css('zIndex', zIndexNumber);
		zIndexNumber -= 10;
	});
});*/
  $("ul.sf-menu").superfish({
			delay:       200,                            
            animation:   {opacity:'show',height:'show'},  
            speed:       'fast',                          
            autoArrows:  false,                           
            dropShadows: false       // callback function fires after a sub-menu has closed – 'this' is the ul that just closed 
								  
								  }); 


 });