 $(document).ready(function() {

	//activates placeholder plugin on all text fields
	$('input:text').placeholder({blankSubmit: true});

	/*Global reset of tables because they don't CSS well*/
	//$('table').attr('cellspacing','0');
	//$('table').attr('cellpadding','0');
	//$('table').attr('border','0');
	$('th[valign!=middle][valign!=bottom][valign!=baseline]').attr('valign','top');
	$('td[valign!=middle][valign!=bottom][valign!=baseline]').attr('valign','top');



	$('td.linkbox').addClass('clickable');
	$('td.linkbox').click(function(){
		window.location=$(this).children("a").attr('href');
	});



	//Popup Code
	$('body').prepend('<div id="popup_overlay " style="display: none;"></div>');

	$('#popup_overlay').click(function(event) {
		$('.popup_frame').fadeOut('fast');
		$('#popup_overlay').fadeOut('slow');
	});

}); 


