$(document).ready(function(){
		
		/* LINKS OUTLINE NONE IE */
		$("a").focus(function() {
  			$(this).blur();
		});
		
		$('a[rel=external]').click(function(){
			window.open(this.href); 
			return false;
  		});

		
		$("a[href=#]").attr("href", "javascript:void(0);");
		
		

		
		$("#promo a,#nav a#traffik").mouseover(function() {
        	$("#nav a#traffik").css({ "border-top": "4px solid #28e2ee"}); // <-- This syntax was wrong
		}).mouseout(function() {
        	$("#nav a#traffik,#nav a#traffik").css({"border-top": "4px solid #000"}); // <-- This syntax was wrong
		});
		



		/* ACCORDION  	*/				
	 	
		$(".opening").hide();
		$(".to_open").eq(0).addClass("opened");
		$(".opening").eq(0).show();

		$(".to_open").click(function(){
			$(this).next(".opening").slideToggle("slow")
			.siblings(".opening:visible").slideUp("slow");
			$(this).toggleClass("opened");
			$(this).siblings(".to_open").removeClass("opened");
		});
	


});// The end of our jQuery function	

$(function(){
		$.fn.supersized.options = {  
			startwidth: 1024,  
			startheight: 768,
			minsize: .50,
			slideshow: 0 
		};
        $('#supersize').supersized(); 
    });
    
    
    
