jQuery(function($) {

	$(".linkDisplayBoxes li a").hover(
		function()
		{
			$(this).children("img.rollover").fadeTo( "medium", 0.0 );
			if( $(this).children(".name").length > 0 ){
				$(this).children(".name").fadeTo( "medium", 1.0 );
				$(this).children(".title").fadeTo( "medium", 0.0 );
			}
		},
		function()
		{
			$(this).children("img.rollover").fadeTo( "medium", 1.0 );
			if( $(this).children(".name").length > 0 ){
				$(this).children(".name").fadeTo( "medium", 0.0 );
				$(this).children(".title").fadeTo( "medium", 1.0 );
			}
		}
	);
	
	
	// superfish for menus
	 $('#mainNav > ul').superfish({
	 	autoArrows: false
	 });
	
	

	// not on homepage
	if( $('body.home').length < 1 ){
		$.supersized({
			//Background image
			start_slide: 0, // random
			vertical_center: 0,
			slides	:  [ 	/*{ image : '/images/bg_subpage1.jpg' },*/
							{ image : '/images/backgrounds/bg_nyc_art3.jpg' },
							{ image : '/images/backgrounds/bg_nyc_plants2.jpg' },
							{ image : '/images/backgrounds/bg_nyc_skyshot3.jpg' }
							/* { image : '/images/backgrounds/bg_px_plants.jpg' }, */
							/* { image : '/images/backgrounds/bg_greer_lobby.jpg' } */
						]					
		});
	}
	
	
	
	$('.fittext').fitText(1.2);
});
