$(document).ready(function(){
	$('input[type=submit]').addClass('button');
	$('input[type=clear]').addClass('button');
	$('input[type=text],input[type=password],textarea').mouseover(function(){ $(this).addClass('input-selected'); });
	$('input[type=text],input[type=password],textarea').mouseout(function(){ $(this).removeClass('input-selected'); });
	
	$('#h-navigation li').hover(
		function() { $('.sub', this).css('display', 'block');},
		function() { $('.sub', this).css('display', 'none');
	});
	$('#h-navigation li').hover(
		function() { $('.sub .sub', this).css('display', 'none');
	});
	
	// Fancybox
	$('#fancy_outer').css('z-index','30000');
	$('a[rel=lightbox]').fancybox({
		'overlayShow': true,
		'overlayOpacity': 0.5,
		'overlayColor': '#000',
		'centerOnScroll': true
	});
	
	// Cycle
    $('.galleryFade').cycle({
		fx: 'fade'
	});
	
	$('.instruction').css('opacity','0');	
	$('#home-gallery img').mouseover(function(){
		$('.instruction').animate({
			opacity: 1
		}, { queue:false, duration:300 });
	});
	$('#home-gallery img').mouseout(function(){
		$('.instruction').animate({
			opacity: 0
		}, { queue:false, duration:300 });
	});
	$('.galleryFade a').click(function(){
		$('.instruction').hide();
	});
	
	// Gallery Instructions
	$('.gallery-instructions').hide();
	$('.gallery-help').show();
	$('.sep').hide();
	$('#collapse').hide();
	$('#expand').click(function() {
		$('.gallery-instructions').slideDown(500, 'easeInOutCirc');
		$('#collapse').show();
		$('#expand').hide();
	});
	$('#collapse').click(function() {
		$('.gallery-instructions').slideUp(500, 'easeInOutCirc');
		$('#collapse').hide();
		$('#expand').show();
	});
});