$(window).bind("load", function() {
   	setTimeout( "$('.1').hide().fadeIn(300);", 300 );
    setTimeout( "$('.2').hide().fadeIn(300);", 600 );
    setTimeout( "$('.3').hide().fadeIn(300);", 900 );
    setTimeout( "$('.4').hide().fadeIn(300);", 1200 );
    setTimeout( "$('.5').hide().fadeIn(300);", 1500 );
});

$(document).ready(function(){
$('.selectorClass').css('opacity',0.4);
$('.selectorClass').css({'position': 'absolute'});
$('.selectorClass').css({'top': '0'});
$('.selectorClass').hover(
	function(){
		$(this).stop().fadeTo('300',1);
	},
	function(){
		$(this).stop().fadeTo('300',0.4);
	});
	
	function clearContents(element) {
  		element.value = '';
	}

});


