$(document).ready(function() {
	//var j = jQuery.noConflict();

	$('#infobutton').hover(function() {$(this).css({'color' : '#FF4E00', 'cursor' : 'pointer'})}, function (){$(this).css({'color' : '#A3A3A3', 'cursor' : 'text'})} );
	 $("#infobutton").click(function() {
		$("#infopromo").slideToggle(); 
	});
});

