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

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


// News Scroller Script
$(document).ready(function() {
	$("ul#newsticker").liScroll({travelocity: 0.05});
});


// Online Auctions Image Fade In
$(document).ready(function(){
	$("#image_area_col1_box1 img").fadeTo("fast", 0.0);

	$("#image_area_col1_box1 img").hover(function(){
		$(this).fadeTo(300, 1.0);
	},function(){
   		$(this).fadeTo(600, 0.0);
	});
});


// Gallery Cycle Code
//$(document).ready(function(){
//		$("#main_image").cycle({ 
//		fx:    'fade', 
//		pause:  1 
//	});
//});	


// Equal Column Height Script
//$(document).ready(function() {
//	$("#contents_container").equalHeights(); 
//});


// Panel Toggle
//$(document).ready(function() {
//	$("#dropdown_box").hide();
//	$(".dropdown").click(function () {
//		$("#dropdown_box").slideToggle(400);
//		return false;
//	});
//});


// 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;
//	});
//});	


// Form Validate Script
//$(document).ready(function(){
//	$("#emailForm").validate();
//	$("#subscribeForm").validate();
//	$("#loginForm").validate();
//	$("#contactForm").validate();
//});


