$(document).ready(function() {
	$("a[rel='external']").attr("target","_blank");
	
	/*
	$("a:not([href*=http://investinnorrbotten.vinterwebb.se])").not("[href^=#]")
	        .addClass("external")
	        .attr({ 
				target: "_blank" 
			});
	*/
	
	$('a').each(function() {
	   var a = new RegExp('/' + window.location.host + '/');
	   if(!a.test(this.href)) {
	       $(this)
			.addClass("external")
			.attr({target: "_blank"});
	   }
	});
	
	$("#push li:first").addClass("first");
	
	$('#carousel').cycle({
			fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
	
	// sub navigation / dropdown
	
	$("ul#nav li ul.sub").parent().addClass("dropdown");	
	$("ul#nav ul.sub").each(function(i, item){
		$(item).find("li:first").addClass("first");
	});
	
	
	// on click
	/*
	$("ul#nav > li.dropdown > a").click(function() { 	
		$(this).parent().find("ul.sub").slideToggle('fast').show(); //drop down			
		return false;
	});
	*/
	
	$("ul#nav > li.dropdown > a").click(function() {
		return false;
	});
	
	$("ul#nav > li.dropdown").hover(function(){    
        $(this).addClass("hover");
        $('ul:first',this).css('visibility', 'visible');
    }, function(){    
        $(this).removeClass("hover");
        $('ul:first',this).css('visibility', 'hidden');    
    }); 	
	
});
