$.noConflict();
jQuery(document).ready(function($) {

	$('#homeCopy').css('opacity', 0).fadeTo(1000, 1);
	$('#homeGalleryNav').css('opacity', 0).fadeTo(1000,1);

	$('.fadeContent').css('opacity', 0).fadeTo(600, 1); 
 
 	$('#homeGalleryNav li a span').css('opacity', .8);
 	
 	$('#homeGalleryNav li a').hover(function(){
 		$(this).find('span').stop().fadeTo(500,1);
		}, function () {
		$(this).find('span').stop().fadeTo(500,.8);
 	});
 	
 	$('#homeAreas h3').css('opacity', .7);
 	$('#homeAreas li a').css('opacity', .8);
 	$('#homeAreas li a').hover(function(){
 		$(this).stop().fadeTo(500,1);
		}, function () {
		$(this).stop().fadeTo(500,.8);
 	});
 	
 	
 	$('#slideshow').css('opacity', 0).fadeTo(1000,1);
 	$('.slideshow a span').css('opacity', .7);
 	$('.slideshow a').hover(function(){
 		$(this).find('span').stop().fadeTo(500,1);
		}, function () {
		$(this).find('span').stop().fadeTo(500,.7);
 	});
 	
 	

	$('#mainNav li').removeClass('navButton');
	$('.fadeNav').append('<span class="hover"></span>').each(function () {
	  var $span = $('> span.hover', this).css('opacity', 0);
	  $(this).hover(function () {
	    $(this).css({'background': 'url(/css/images/nav.png) center left no-repeat'});
	    $span.stop().fadeTo(300, .5);
	  }, function () {
	  	$(this).css({'background': 'url(/css/images/nav.png) top left no-repeat'});
	    $span.stop().fadeTo(300, 0);
	  });
	});
	
	
	$('.fadeShowcase').append('<span class="hover"></span>').each(function () {
	  var $span = $('> span.hover', this).css('opacity', 0);
	  $(this).hover(function () {
	    $span.stop().fadeTo(300, 1);
	  }, function () {
	    $span.stop().fadeTo(300, 0);
	  });
	});
	
	
	
	$('.showcaseListEntry .readMore a').fadeTo(300,.7);
	$('.showcaseListEntry .readMore a').hover(function(){
		$(this).stop().fadeTo(300,1);
		}, function () {
		$(this).stop().fadeTo(300,.7);
	});
	
	$('.editLink').css('opacity', .5);
});

