// JavaScript Document

$(document).ready(function(){
	$("#splash select").sSelect().change(function(){
		window.location = $(this).getSetSSValue();
	});
	$("a[rel='external']").click(function(){
		$(this).attr("target","_blank");
	});
});

