$(document).ready(function() {
	
	// Login Form
	
	$('#username').css({ backgroundImage: 'url(images/username.jpg)' }).focus(function() {
		$(this).css({ backgroundImage: 'url(images/login_input.jpg)' });																																									 
	});
	$('#password').css({ backgroundImage: 'url(images/password.jpg)' }).focus(function() {
		$(this).css({ backgroundImage: 'url(images/login_input.jpg)' });																																									 
	});
	
	// Superfish Dropdown
	$('.sf-menu').superfish();		
	
	// Stripe Tables
	$('table tr:even').addClass('even');
	$('table tr:odd').addClass('odd');


});