(function(){

var api =
{
	t: null,
	ie: ($.browser.msie && ($.browser.version == 6)),
	init: function()
	{
		if($(".details a.title").length > 1) {
			$(".details a.title").click(function () {
				triggerTab(this);
			});
		}

		if(api.ie) {
			try {
				document.execCommand("BackgroundImageCache", false, true);
			} catch(err){};
			if(typeof(DD_belatedPNG) != 'undefined')
			{
				DD_belatedPNG.fix('#menu, #menu li ul, #footer .img img, .box1, #testimonial blockquote span, #contact1 p');
			}
		}

		if($(".home #slide img").length > 0) {
			
			$(window).load(function() {
				$("#slide img:last").fadeIn("normal");
				timeKeeper = setTimeout("imgFlip()",6000);
			});
		}
	}
};

$(document).ready(api.init);

function triggerTab(tab) {
	pos = $(".details a.title").index(tab);
	$(".details a.title").removeClass("active").eq(pos).addClass("active");
	$(".details .desc").addClass("hide").eq(pos).removeClass("hide");
}

})();
  
function imgFlip() {
$("#slide img:first").hide().appendTo("#slide");
$("#slide img:last").fadeIn("normal");
timeKeeper = setTimeout("imgFlip()",6000);
}