// JavaScript Document

$(window).load(function() {
		
	$(".image").mouseenter(function() {
		$(this).find("a").append('<img class="bg-over" src="/graphics/layout/gallery_over.png" />');
		
		
	}).mouseleave(function() {
		$(this).find(".bg-over").remove();
		
	});
	
	
	$("div.section-wrapper").carousel( { dispItems: 2 } );
	
	
	
	$('#slider').cycle({ 
		fx: 'fade', 
		pager: '#links', 
		pagerAnchorBuilder: function(idx, slide) {
			return '<a href="#" id="slide_'+ idx +'" class="slide_bullet"></a>';
		}, 
		before: function() {
			$('#slide_text').fadeOut();
		}, 
		after: function() {
			$('#slide_text').html(this.alt);
			$('#slide_text').fadeIn();
		}
	});
	
	
	
	
});

