// JavaScript Document
$(document).ready(function(){ 
	$(document).pngFix();
	
	$("#slider").easySlider({
		auto: true,
		continuous: true,
		speed: 				1000,
		pause:				6000,
		prevText: 			'',
		nextText: 			''
		/*
		Other optional params:
		
		controlsBefore:		'',
		controlsAfter:		'',	
		controlsFade:		true,
		firstId:			'firstBtn',
		firstText:			'First',
		firstShow:			false,
		lastId:				'lastBtn',	
		lastText:			'Last',
		lastShow:			false,				
		vertical:			false,

		numeric: 			false,
		numericId: 			'controls'
		prevId: 			'prev_button',
		nextId:				'next_button',
		controlsShow: 		false,
		*/
		
	});
}); 
