// JavaScript Document
$(document).ready(function(){ 

	$("a.navleft1").mouseover( function() { 
		$(this).css({ display: "block", backgroundImage: "url('images/template_button_hover.gif')", padding: "10px 0 10px 0", color:"yellow"});
		$(this).fadeIn ("slow");
	} );
	
	$("a.navleft1").mouseout( function() { 
		$(this).css({ display: "inline", background: "none",  color:"white"});
	} );

});
