$(document).ready(function() {

$('form.wpcf7-form .submit_btn').click(function() {$('.wpcf7-form').submit();})

$('.menu').find("ul:first li a").prepend('<span class="grey_star"></span>').append('<span class="grey_star"></span>')

$('.menu').find("ul:first li:last").addClass('last'),


$(function(){
function isPlaceholderSupported() {
        var input = document.createElement("input");
        return ('placeholder' in input);
    }
 
    var placeholdersupport = isPlaceholderSupported();
 
    if (placeholdersupport == false) {
        // If there is no placeholder support,
        // set the value of the input field to the
        // placeholder value
        $('#s').val('Search our store');
    }
 
    $('#s').focus(function() {
        if (placeholdersupport == false) {
            if ($(this).val() == 'Search our store')
                $(this).val('');
        }
    });
 
    $('#s').blur(function() {
        if (placeholdersupport == false) {
            if($(this).val() == '')
                $(this).val('Search our store');
        }
    });
    

});
});

