$(document).ready(
	function() {

		// Open links with rel="external" in new window - like ye ole' target="_blank"
		$('a[rel="external"]').click(function() {window.open( $(this).attr('href') ); return false;});


		// Zebra-stripe data tables
		$('table.data tbody').each(function() {
			$(this).removeClass("odd even");
			$('tr:odd', this).addClass('odd');
			$('tr:even', this).addClass('even');
		});


		// Initialize Lightbox
		$('.colorbox').colorbox();
		
		
		// Initialize Placeholder (used for newsletter signup in footer)
		Placeholder.init({
		    normal      : "#fef9dd",
		    placeholder : "#fef9dd"
		});

	}
);

