$(document).ready(function() {
    $('#slideShowBox')
	//.before('<div id="slideNav">')
	.cycle({
	    fx:     'scrollVert',
	    speed:  500,
	    timeout: 7000,
	    //pager:  '#slideNav',
	    pause: 1
	});
	/*$('#slideNav').not('.stopped').find('a').click(function(){
		$('#slideShowBox').cycle('pause');
		$('#slideNav').addClass('stopped');
		return false;
	});*/
	
			
	// Ta bort title-attributet pa alla bilder
	$("img").each(function(){
        $(this).removeAttr('title');
    });
	
// Gor sa smapuffarna clearas och hamnar under varandra i rader
	strli = $('.subNewsCol li');
	for (y=0;y<strli.length;y++) {
		if (y % 2) {
			strli[y].style.clear = "none";
		} else {
			strli[y].style.clear = "left";
		}
	}
	strli = $('.newsCol li');
	for (y=0;y<strli.length;y++) {
		if (y % 3) {
			strli[y].style.clear = "none";
		} else {
			strli[y].style.clear = "left";
		}
	}

});

$(function() {
	// setup ul.tabs to work as tabs for each div directly under div.panes
	$(".infoBox ul.tabs").tabs(".infoBox div.panes > div", {});
	$(".regBox ul.tabs").tabs(".regBox div.panes > div");
	$("#article ul.tabs").tabs("#article div.panes > div");
	$("ul.banner_tabs").tabs("div.banner_panes > div");
});

