$(document).ready(function()
		{
		
			Cufon.replace('h2, a.nav, h1,ul.date-picker li, .events-content h3, a.nav-last, div.gfg-title a', {
				hover: true
			});
			
			$('#form input').focus(function()
			{
				$(this).val('');
			
			});
			
			$('#images').jqFancyTransitions({ width: 441, height: 297, titleOpacity: 0 });
			
			$('#yellow').prepend('<img src="images/right-nav.png" style="position:relative; top:4px; right:4px;"/>');
			$('#yellow').append('<img src="images/right-nav.png" style="position:relative; top:4px; left:3px;"/>');
			
			if($.browser.msie)
			{
				$('iframe').attr('allowTransparency' , 'true');
			
			}
			
			$('#facebook, #twitter').hover(
				
				function()
				{
					$(this).animate({ 
					top: "73px"
					}, 1 );

				},
				
				function()
				{
					$(this).animate({ 
					top: "80px"
					}, 1 );
				}
			);
		
			
		});
