$( function(){

    $('.screen').mouseover( function(){
		
        $(this).css('background-image', 'url(wp-content/themes/littlecity/images/cloud_over.png)');
 
    });

	$('.screen').mouseout( function(){

        $(this).css('background-image', 'url(wp-content/themes/littlecity/images/cloud.png)');
 
    });

});

image1 = new Image();
image1.src = "images/cloud.png";




	
	function clearMe(formfield){ 
		if (formfield.defaultValue==formfield.value)
			formfield.value = ""
	}