$(document).ready(function(){
	$('button, .button').addClass('ui-state-default').addClass('ui-corner-all')
		.mouseover(function(){ $(this).addClass('ui-state-hover') })
		.mouseout(function(){ $(this).removeClass('ui-state-hover') });
	$('div.banner').slideDown(250).animate({opacity:.9},5000).slideUp(250,function(){ $(this).remove() });
	$("input[type='text'],textarea,select").addClass("ui-widget-content").addClass("ui-corner-all");

	$('a.lightbox').lightBox({fixedNavigation:true});
	
	$(".tablesorter").tablesorter();		
	$(".filter").keyup(function() {
		$.uiTableFilter( $(this).next(".tablesorter"), this.value );
	});
	
	$(".accordion").accordion({ header: "h2", alwaysOpen:false});
	$(".tabs").tabs();
	
	$("textarea.autogrow").autogrow();
	
	$(".phone-mask").mask("(999) 999-9999");
	
	$("#product-promo").cycle({fx:"fade",speed:"5000"});
});	