﻿function myInit() {
	
	//$("a[href^='http:']").not("[href*='yourdomain.com']").attr('target','_blank');
	
	$('#navigation ul li:has(li.selected)').addClass('selected');
	jQuery.preloadImages = function() {
		for(var i = 0; i<arguments.length; i++) {
			jQuery("<img>").attr("src", arguments[i]);
			}
		}
	$.preloadImages("/img/switchBackground1.jpg","/img/switchBackground2.jpg","/img/switchBackground3.jpg","/img/switchBackground4.jpg");
	switchContent(1);	
	$('#switchMenu li a').click( function() {					
		$('#switchMenu li').removeClass('selected');
		$(this).parent().addClass('selected');		
		});
	}

function switchContent(contentId) {	
	$(".switchPane").hide();		
	$("#switch").css('background-image','url("img/switchBackground'+contentId+'.jpg")');
	$("#switch_"+contentId).show();
	}
	
	
function switchContentSmall(contentId) {	
	$(".switchPaneSmall").hide();		
	$("#switch").css('background-image','url("img/switchBackground'+contentId+'.jpg")');
	$("#switch_"+contentId).show();
	}	
	


