// placeholder fix
$(document).ready(function() {
	if(!Modernizr.input.placeholder){
			$("input").each(
			function(){
			if($(this).val()=="" && $(this).attr("placeholder")!=""){
			$(this).val($(this).attr("placeholder"));
			$(this).focus(function(){
			if($(this).val()==$(this).attr("placeholder")) $(this).val("");
			});
			$(this).blur(function(){
			if($(this).val()=="") $(this).val($(this).attr("placeholder"));
			});
			}
			});		
	}
});


//grid height functon
$(window).load(function(){
    $('.productgrid').each(function() {
        var gridHeight = 0;
        $(this).children().each(function() {
            if($(this).height() > gridHeight){
                gridHeight = $(this).height();
            }
        });
        $(this).children().height(gridHeight);
    });
});
