
// Main Scripts
// ----------------------------------------------------------------------------- //

// Link Focus Scrubber Code
$(document).ready(function() {
	$("a").bind("focus",function(){if(this.blur)this.blur();
	});
});


// Scrolling Code
$(function(){   
	$('#wrapper').localScroll({duration:1000});
});	

// Panel Toggles
$(function() {
	$("#top_panel").hide();
	$("a#login").click(function () {
		$("#top_panel").slideToggle();
		return false;
	});
});

$(function() {
	$("#newsletter").hide();
	$("a#newsletter_box").click(function () {
		$("#newsletter").slideToggle(400);
		return false;
	});
});    


// No Right Click
//$(function(){   
//	$("#header_logo").bind("contextmenu",function(){
//		return false;
//	});
//	$("#contents_container").bind("contextmenu",function(){
//		return false;
//	});
//	$(".news_image").bind("contextmenu",function(){
//		return false;
//	});
//});	 
