// make tabs
$(function() {
 $('#container').tabs();
 });

// table stuff
$(function() {
$(".stripeMe tr").mouseover(function() {$(this).addClass("over");}).mouseout(function() {$(this).removeClass("over");});
$(".stripeMe tr:even").addClass("alt");
});

// fix pngs for IE<7
$(function() {
$('.feature').pngfix();
});

// auto-add attributes for thickbox
$(function() {
//$("a.thickbox").attr("href").append("?this");
$("a.thickbox").attr("href", function() { return this.href+'?KeepThis=true&TB_iframe=true&height=500&width=700'; });
 });
