$(document).ready(function() {

//Logo animation
//$('.fade').append('<span class="hover"></span>').each(function () {
	 // var $span = $('> span.hover', this).css('opacity', 0);
	  //$(this).hover(function () {
	    //$span.stop().fadeTo(500, 1);
	  //}, function () {
	    //$span.stop().fadeTo(500, 0);
	  //});
	//});


//Marker animation
$( "#marker" ).animate({ height:10, width:168 }, 2000 );
$('#coming-soon').fadeIn(2000);

$('#remove').click(function() {
    $('#coming-soon').hide('fast');
    return false;
  });

$('#show-form').click(function() {
    $('#form-show').css("display", "block");
    return false;
  });


$("ul.featured li:nth-child(3n)").css("margin-right", "0px");

$(document).ready(function(){
	$('.wpcf7-select').customStyle();
});

});
