﻿function closeB(element){
	$(element).removeAttr('style').fadeOut();
};

function showFeature() {
	setTimeout(function(){
		$('#feature').show('drop', 500);
	}, 1300);
	$('#close').click(function() {
		closeB('#feature:visible');
	});
}

$(document).ready( function() {

	//showFeature();
	
	//hover states on the static widgets
	$('ul#icons li').hover(
		function() { $(this).addClass('ui-state-hover'); }, 
		function() { $(this).removeClass('ui-state-hover'); }
	);
});

