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

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

