// JavaScript Document
//<!--
//CDN fallback
if (typeof jQuery == 'undefined') {
	document.write(unescape("%3Cscript src='http://code.jquery.com/jquery-1.4.2.min.js' type='text/javascript'%3E%3C/script%3E"));
}
//MAKING OTHER SITES THINGY APPEAR----------------------------------------------------------------------------------------------------------------------------
$(document).ready(function() {		
	$('li#otherSites ul').hide();
	$('li#otherSites').hover(
		function () {
			$('li#otherSites ul').fadeIn('fast');
		},
		function () {
			$('li#otherSites ul').fadeOut('fast');
		}
	);
});
//CITE THIS---------------------------------------------------------------------------------------------------------------------------------------------------
$(document).ready(function() {		
	$('button.citeThis').show();
	$('code.citeThis').after('<br class="citeThis" />');
	
	$('button.citeThis').click(function () {
		$(this).hide();
		$(this).next().slideDown();
	});
});
//FOOTER MARGIN IN ABOUT/CONTACT FOR OPERA--------------------------------------------------------------------------------------------------------------------
$(document).ready(function() {
	if (/Opera[\/\s](\d+\.\d+)/.test(navigator.userAgent))
	{
		$('#contactInfo').after('<div id="operaClear"></div>');
	}
});
//-->