jQuery.fn.vjustify=function() {
    var maxHeight=0;
    this.each(function(){
        if (this.offsetHeight>maxHeight) {maxHeight=this.offsetHeight;}
    });
    this.each(function(){
        $(this).height(maxHeight + "px");
        if (this.offsetHeight>maxHeight) {
            $(this).height((maxHeight-(this.offsetHeight-maxHeight))+"px");
        }
    });
};

$(document).ready(function(){
/*	$(".vjustify").vjustify();*/
	$("#search").click( 
		function() {
			if ($(this).val()=="Search") {
				$(this).val("");
			}
		});
	$("#search").blur( 
		function() {
			if ($(this).val()=="") {
				$(this).val("Search");
			}
		});
	
	
/*	$('img[@src$=.png]').ifixpng(); */
	
	/*$('img[@src$=.png], .shdw-l, .shdw-r, .shdw-b').ifixpng(); */
});
