function equalHeight(group) {
    tallest = 0;
    group.each(function() {
        thisHeight = $(this).height();
        if(thisHeight > tallest) {
            tallest = thisHeight;
        }
    });
    group.height(tallest);
}
window.onload = function() {
	//$("#background").dropShadow({left: -1, top: -1, blur: 1, opacity: 1});
	
	$(".shadow").dropShadow({left: 0, top: 0, blur: 1, opacity: 0.4});
			
	
};

$(document).ready(function(){	
	$("table.stripe").each(function(){
$(this).find("tr:odd").addClass("odd");
$(this).find("tr:even").addClass("even");
});
	$('a[href^="http://"]').attr({target: "_blank", title: "Opens in a new window"});
	$('a[href^="https://"]').attr({target: "_blank", title: "Opens in a new window"});
	
	equalHeight($(".homebox"));

});



