
/* Supapet onload */

$(document).ready(function(){
	
	/* CSS3 fixes */
	
	$('input[type=text], input[type=password]').addClass('textinput');
	$('input[type=submit]').addClass('button');
	
	$('#categories_block_left li').hover(function(){
		$(this).addClass('sfhover');
	},function(){
		$(this).removeClass('sfhover');
	});
	
});
