jQuery(document).ready(function() 
{
	
	if($.browser.msie && $.browser.version.substr(0,1)== 6)
	{
		return;
	}
	else
	{
		var tweenSpeed = 200;

		// ITEM TWEEN OVERVIEW SMALL
		$("#overviewSmall li").hover(function()
		{
			$(this).find(".normal").stop().animate({ opacity: "0" }, tweenSpeed);
			},function() {
			$(this).find(".normal").stop().animate({ opacity: "1" }, tweenSpeed);
		});
		
		// ITEM TWEEN OVERVIEW MIDDLE
		$("#overviewMiddle li").hover(function()
		{
		
			$(this).find(".normal").stop().animate({ opacity: "0" }, tweenSpeed);
			},function() {
			$(this).find(".normal").stop().animate({ opacity: "1" }, tweenSpeed);
		});
		
		// ITEM TWEEN OVERVIEW LARGE
		$("#overviewLarge li").hover(function()
		{
		
			$(this).find(".normal").stop().animate({ opacity: "0" }, tweenSpeed);
			},function() {
			$(this).find(".normal").stop().animate({ opacity: "1" }, tweenSpeed);
		});
		
		// ITEM TWEEN OVERVIEW BOTTOM
		$(".bottomBlock").hover(function()
		{
			$(this).stop().animate({ backgroundColor: "#495159" }, tweenSpeed);
			},function() {
			$(this).stop().animate({ backgroundColor: "#3b444c" }, tweenSpeed);
		});

		// ITEM HREF
		$(".item").click(function()
		{	
			if (!$(this).find("a").attr("href")) return;
			window.location=$(this).find("a").attr("href"); return false;
		});
		

		$(".item").addClass("hand");
		
		
		SSS_faq = {
			init : function() {
				$('ul.faq .answer').slideToggle('fast');
				$('ul.faq .question').click(function() { SSS_faq.toggle(this) });
			},
			
			toggle : function(elt) {
				$(elt).toggleClass('active');
				$(elt).siblings('.answer').slideToggle('fast');
			}
		}
		
		$(function() { 
			SSS_faq.init();
		});


		
		
	}
	
});