	
	//Ready the dom.... //
	$(document).ready(function() {
	
	//s3 slider functions//
	$('#s3slider').s3Slider({timeOut: 4000});
	
	});	
	
	//fancy functions //
	$("a.fancybox").fancybox();
		
	$("a.inline").fancybox({
		'hideOnContentClick': false,
		'autoDimensions'    : true
	});
	
	$("a.external").fancybox({
		'width'				: '95%',
		'height'			: '95%',
		'autoScale'			: false,
		'transitionIn'		: 'elastic',
		'transitionOut'		: 'fade',
		'type'				: 'iframe'
	});
	
	$("a.animSmall").fancybox({
		'hideOnContentClick': false,
		'type'				: 'iframe',
		'width'             : 243,
		'height'            : 229,
		'scrolling'         : 'no'
		
	});
	
	$("a.animWide").fancybox({
		'hideOnContentClick': false,
		'type'				: 'iframe',
		'width'             : 480,
		'height'            : 229,
		'scrolling'         : 'no'	
	});
	
	


