$(document).ready(function (){

	$('#cycle').cycle({ 
		fx:     'scrollHorz', 
		speed:  1500, 
		timeout: 5000, 
		next:   '#next', 
		prev:   '#prev',
		cleartype: true,
		cleartypeNoBg: true
	});
	
	$('#sub a').append('<span class="hover"></span>').each(function () {
	  var $span = $('> span.hover', this).css('opacity', 0);
	  $(this).hover(function () {
	    $span.stop().fadeTo(500, 1);
	  }, function () {
	    $span.stop().fadeTo(500, 0);
	  });
	});
	
	$('#photos a').lightBox();
	
	
	$(".hovertrigger").hover(function() {
	
		
		$("#homehover").stop().animate({
			"top": 5,
			"opacity": 1
			},300, 'linear')
		
		},function() {
	
		
		$("#homehover").stop().animate({
			"top": 10,
			"left": 172,
			"opacity": 0
			}, 200)
	
	});

});

