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

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


// Gallery Cycle Code
//$(document).ready(function() {
//    $('#contents_column_three').cycle({ 
//    fx:    'fade', 
//    speed: 2000,
//	timeout: 7000
// 	});
//});


// Equal Column Height Script
$(document).ready(function() {
	$('.equal').equalHeights(); 
});


// Panel Toggle
//$(document).ready(function() {
//	$("#login").click(function(event) {
//	event.preventDefault();
//	$("#top_panel").slideToggle(500);
//}); 
//
//$("#top_panel a").click(function(event) {
//	event.preventDefault();
//	$("#top_panel").slideUp();
//	});
//});


// Hover Image Fade In and Out
//$(document).ready(function(){
//	
//	$(".image_list li img").fadeTo("slow", 0.4);
//	
//	$(".image_list li img").hover(function(){
//		$(this).fadeTo("slow", 1.0);
//		},function(){
//		$(this).fadeTo("slow", 0.4);
//	});
//});


// Minus Margin Click Box
//$(document).ready(function(){
//	$("#home").click(function() {
//		$("#right_col_contents").animate({
//				marginLeft: "0px"
//		}, 500);
//	});
//});


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


