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

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


// Main Menu Script
$(document).ready(function() {

    $("ul.main_nav li").hover(function(){
    
        $(this).addClass("hover");
        $('ul:first',this).show();
    
    }, function(){
    
        $(this).removeClass("hover");
        $('ul:first',this).hide();
    
    });

});


// Carousel Gallery Scroller
$(document).ready(function(){	
	$("#slider").easySlider({
		auto: true,
		continuous: true,
		controlsShow: false,
		pause: 5000,
		speed: 1200
	});
});


// Bigger Link Script for Home Page Product Carousel List
$(document).ready(function(){	
	$("#products ul li").biggerlink();
});


// Screen Shot Hover Fade
$(document).ready(function(){
	
	$("ul.screenshots li a img").fadeTo("slow", 0.3);
	
	$("ul.screenshots li a img").hover(function(){
		$(this).fadeTo("slow", 1.0);
		},function(){
		$(this).fadeTo("slow", 0.3);
	});
});


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


// Lightbox Gallery Code
$(document).ready(function(){
	$(".lightbox").lightBox();
});


//$(document).ready(function(){
//	$("#main_image").pngFix( );
//});
