$(document).ready(function() {
						   
	$("#slider").show();

	jQuery("div#slider").codaSlider();
	
	$(".container").click( function() {
		$(this).find(".box").fadeToggle();
	});
	
	setInterval("timedFunction();",7000);
});


jQuery.fn.fadeToggle = function(speed, easing, callback) {
   return this.animate({opacity: 'toggle'}, speed, easing, callback);

}; 

function timedFunction() {
	$('#stripNavR0 a').click();
	var arrHref = location.href.split("#");
	var i = (arrHref[1] - 1);
	setTimeout("$('.container:eq("+i+")').click();", 1000);
}