$(document).ready(function() {
	if($(".rotator").length > 0){
		theRotator();
		$('div.rotator').fadeIn(1000);
		$('div.rotator ul li').fadeIn(1000); // tweek for IE
	}
	$('#mainmenu li.base').hover(
		function() { $('ul', this).css('display', 'block'); },
		function() { $('ul', this).css('display', 'none'); }
	);
	$("#postsContainer .postWrapper").first().addClass('first');
	$(".postWrapper:even").addClass('even');
	if($("#slideshow").length > 0){
		$('#slideshow').tabs({ fx: { opacity: 'toggle' } }).tabs('rotate',5000);
	}
	if($(".boxhover").length > 0){
		$('.boxhover').append('<div class="hover"></div>');
		$('.boxhover').hover(
			function() {
				$(this).children('div.hover').fadeIn('1000');	
			}, 
			function() {
				$(this).children('div.hover').fadeOut('1000');	
			}
		);
	}
	if($(".lightbox").length > 0){
		$(".lightbox").lightbox({ fitToScreen: true, scaleImages: true });
	}
}); 
