$(document).ready(function() {
	// Stuff to do as soon as the DOM is ready;
	$('.photo-block').cycle({
		fx: 'fade'
	});
	
	// Table rows
	$('table.results tr:odd td').addClass('odd');
	
	// lightbox
	$('.gallery-icon a').attr("rel", "lightbox");
	$('a[rel=lightbox]').lightBox();
	
	// SM logos
	$('.logos img').css('opacity','0.5');
	$('.logos img').hover(function(){
		$(this).stop().animate({opacity: 100}, 90);
	}, function() {
		$(this).stop().animate({opacity: 0.5}, 200);
	});
	
	// Styleswitcher
	// Styles
	var ls = "lance";
	var rd = "road";
	$('.lance').click(function(){
		$.cookie("style", null);
		$('body').addClass("lance");
		$.cookie("style", ls, {
			expires: 7,
			path: '/'
		});
	});
	$('.road').click(function(){
		$.cookie("style", null);
		$('body').addClass("road");
		$.cookie("style", rd, {
			expires: 7,
			path: '/'
		});
	});
	
});

