// JavaScript Document

/* American Dream Slideshow Javascript Functions copyright 2011 */

/* Author: Sebastian Jordan 19-04-2011 */

// Document Ready

$(document).ready(function(){
	
	// IE6 PNG Fix
	
	$('body').supersleight();
	
	// Slideshow Function
	
	$('.SlideShowBox').cycle({
		fx: 'fade',
		timeout : 5500,
		pager:  '.PagerDots',
		next : '.PagerNext',
		prev : '.PagerPrev',
		
		pagerAnchorBuilder: function(idx, slide) { 
        	return '<a href="#" class="PagerDot"></a>'; 
    	}
		
	});
	
});
