$(document).ready(function() {

// Open links in new window
$("a[rel='external']").click(function(){window.open(this.href); return false;});

// Focus text for searchbox
$("#searchstring").focus(function(){
	if ($(this).val() == $(this)[0].title){
		$(this).removeClass("TextActive");
		$(this).val("");
	}
});
$("#searchstring").blur(function(){
	if ($(this).val() == ""){
		$(this).addClass("TextActive");
		$(this).val($(this)[0].title);
	}
});
$(".Text").blur();        

$('#carousel').jcarousel();

});//End document ready

