/* Lägger till External class på alla utgående länkar */
$(document).ready(function () {
	//window.location.host
	$("a[href^='http']:not([href*='svmc.se'])").each(function() {  
		var text_link = $(this).text();
		var url = $(this).attr('href');
		var found = $(this).find('img');
		if (text_link && url && found.length == 0) {       
		  $(this).attr("target", "_blank");
		  $(this).addClass("external");
		}
	})
	
	$('#community_header').corner('bl');
	$('.box_container').corner('tl tr');

});

/* Fulfix av title tills Sogeti löst felet */
/*
$(document).ready(function () {
	var page_title = $("h1 span").text();
	if(!page_title) {
		$("h1").each(function() {  
			var found = $(this).find('span'); //ta ej med bilder
			if (found.length == 0) {       
				document.title = found.text();  
			} else {
				document.title = 'Sveriges MotorCyklister'; 
			}
		})
	} else {
		document.title = page_title; 
	}
});
*/

/* Fulfix av CSS kod för Toppbox på sidor inte har dom aktiverade. Sogeti får fixa detta i koden */
$(document).ready(function () {
	var pathname = window.location.pathname;
	if(pathname == '/travel/') $("#topbox_main_container").hide(); 
});

$(document).ready(function () {
	$('#forum_threads').load('/www2.php?page=external/forum_threads/5/30/2', function() {
	  //Färdigt... göra något mer? hmm... fundera
	});
});
