$(document).ready(function(){
	
	//$(document).pngFix();
	
	$('#side-nav ul li a').corners();
	
	
	$("#top-navigation ul, #side-nav ul").superfish({
		animation:   {opacity:'show',height:'show'}
	});	
	
	
	$('#top-navigation ul li a').corners("top");
	
	$('a[href^="http://"]').click(function(){
		window.open(this.href);
		return false;
	});
	
	$("#button").hover(
	function () {
		$(this).addClass("hover");
		}, 
	function () {
		$(this).removeClass("hover");
		}
	);
	
	
	$('.sub-nav li:last').addClass("no-border");
	
	$("#mast ul").newsticker();
		
});