/*

Headlands Center for the Arts 2010 Benefit Art Auction

Global JavaScript
version 1.0
author: futurepruf.com

*/

$(document).ready(function() {
	
	// ARTIST NAVIGATION
	var t;

	show_navigation_artists = function() {
		$('#trigger_artists').addClass('active');
		$('#navigation_artists').fadeIn();
	};
	
	hide_navigation_artists = function() {
		$('#trigger_artists').removeClass();
		$('#navigation_artists').fadeOut();
	};

	$('#trigger_artists').mouseenter(function() {
		clearTimeout(t);
		show_navigation_artists();
	});

	$('#trigger_artists').mouseleave(function() {
	 	t = setTimeout('hide_navigation_artists();', 600);
	});


	// OPEN EXTERNAL SITES IN NEW WINDOW
	$("a[href*='http://']:not([href*='"+location.hostname+"'])").attr("target","_blank");

	$('img').each(function(){
	  $(this).attr('src', $(this).attr('rel'));
	});
	
	// CYCLE
	$('#gallery_home').cycle({
	    fx: 'fade', 
	    random: 1,
			delay: 3000,
			after: function() {
				$('#caption').html(this.title);
			}
	});

});
	

