$(document).ready(function() {
	
	$('.lightbox').lightbox();
	
	$("#sidebar_ads .widget:odd").addClass("right_side"); // adds class to every other sidebar add
	
	$('#sort').change(function(e){
		window.location.href = $(this).find('option:selected').val();
	});
	
	
	/*************************
	* Homepage Image Rotator
	*************************/
	
	$(function() {
		setInterval(homeFader, 5000);
	});
	
	function homeFader() {
		$('div.featured.active').fadeOut('slow', function() {
			if($(this).next().size() != 0) {
				if($(window).width() > 740)
				{
					$(this).next().fadeIn('slow').addClass("active");
				}
			} else {
					if($(window).width() > 740)
					{
						$('div.featured:first').fadeIn('slow').addClass("active");
					}
			}
		}).removeClass("active");
	}
	
});
