/**
 * @author marcus
 */
$(document).ready(function() {
	obj = $("#box-cobra-locator img");
	
	// IE 6 hack!
	if ($.browser.msie && $.browser.version.substr(0, 1) < 7) 
	{
		baseSrc = $(obj).attr("src").replace(".png",".gif");
		$(obj).attr("src", baseSrc);
	}
	
	// Fly in stupid cobra
	$("#box-cobra-locator img").animate( { left:"0px"}, 1300 ).animate( { left:"-50px"}, 100).animate( { left:"-35px"}, 80);
	
	// Slideshow
	$("#slideshow div").cycle({
		fx: 'fade',
		timeout: 8000,
		speed: 650
	});
});
