// jquery settings
$(window).ready(function() {
});
$(document).ready(function() {

	//$('div#slideshow').css("background-image", "none");
	// from: http://jquery.malsup.com/cycle/
	$('#slides img:first').fadeIn(1000, function() {

		$('#slides').cycle({
			fx: 'fade',
			speed: 2000
		});

    });

	$("a img").hover(
		function() {
				$(this).stop().animate({opacity:0.7},500);
		},
		function() {
				$(this).stop().animate({opacity:1.0},500);
		}
	);

	$("a.fancyfacts").fancybox({
		'overlayColor':'#57878D',
		'width': 650,
		'height':'90%',
		'overlayOpacity': 0.25,
		'speedIn': 500, 
		'speedOut': 300,
		'type': 'iframe'
		});
	$("a.fancyservices").fancybox({
		'overlayColor':'#57878D',
		'width': 650,
		'height':'60%',
		'overlayOpacity': 0.25,
		'speedIn': 500, 
		'speedOut': 300,
		'type': 'iframe'
		});
	
	//$("#footer").footer();

});
