$("#hoot").mouseenter(function(){
$("#twitter").fadeIn("slow");
});
$("#hoot").mouseleave(function(){
$("#twitter").fadeOut("fast");
});

$(".wpcf7-text").focus(function(){
    // Check for the change
    if(this.value == this.defaultValue){
        this.select();
    }
});

$("textarea").focus(function(){
    // Check for the change
    if(this.value == this.defaultValue){
        this.select();
    }
});

$(document).ready(function() {
	$('#coin-slider').coinslider({ width:922, height:420, hoverPause:true, delay: 4000, effect:'straight', sph: 1 });
});
