//clear login form fields on click
function clearSignInFields() {
	if( !document.getElementById )
		return false;

	if( document.getElementById('username') ) {
		usernameField = document.getElementById('username');
		usernameField.onclick = function() {
			if( usernameField.value == 'Email' )
				usernameField.value = '';
		} //end username clear fn
		usernameField.onblur = function() {
			if( usernameField.value == '' )
				usernameField.value = 'Email';
		}
	} //end if username field is on page

	if( document.getElementById('password') ) {
		passwordField = document.getElementById('password');
		passwordField.onclick = function() {
			if( passwordField.value == 'Password' )
				passwordField.value = '';
		} //end password clear fn
		passwordField.onblur = function() {
			if( passwordField.value == '' )
				passwordField.value = 'Password';
		}
	} //end if password field is on page

}; //end onload

Event.observe(window, 'load', function() {
	clearSignInFields();	
});

//jquery innerfade
$(document).ready(function() {
	$('#winners2007').innerfade( {
		speed: 2000,
		timeout: 5000
	});

});
