$(document).ready(function() {		
	// redirect onChange
	$("#dest").change( function() {
		if( $(this).val() != "null" )
			window.location = $(this).val();
	});

	$("a.target_new_window").click( function(event) {
		event.preventDefault();
		window.open(this.href,$(this).parent().get(0).id);
	});
	
});
	
$(function () {  // basic version is: $('div.marquee').marquee()
	$('div#tesimonials_marquee').marquee('pointer').mouseover(function () {
			$(this).trigger('stop');
	}).mouseout(function () {
		$(this).trigger('start');
	})
});
