// JavaScript Document

$(document).ready(function(){  
	
		$('#thumbs').delegate('img','click', function(){
	$('#largeImage').attr('src',$(this).attr('src').replace('thumb','large'));
	$('#description').html($(this).attr('alt'));
});	
	
	$('#quote p a').hover(function(){
    	$(this).stop().animate({ color: "#336699" }, 700);
		},function() {
    	$(this).stop().animate({ color: "#336699" }, 500);
	});
	
	$('.preamp a').hover(function(){
    	$(this).stop().animate({ color: "#336699" }, 700);
		},function() {
    	$(this).stop().animate({ color: "#999" }, 500);
	});
	
		$('.title-block a').hover(function(){
    	$(this).stop().animate({ color: "#336699" }, 700);
		},function() {
    	$(this).stop().animate({ color: "#fff" }, 500);
	});
	
	$('#innerBox a').hover(function(){
    	$(this).stop().animate({ color: "#336699" }, 700);
		},function() {
    	$(this).stop().animate({ color: "#fff" }, 500);
	});	
	
		
	$('.menu ul li a').hover(function(){
    	$(this).stop().animate({ color: "#336699" }, 700);
		$(".menu ul ul li").children("a").stop().animate({ color: "#999", opacity: 1 }, 600);
		},function() {
    	$(this).stop().animate({ color: "#fff" }, 500);
		$(".menu ul ul li").children("a").stop().animate({ color: "#999", opacity: 0 }, 400);
	});
	
	$('.menu ul ul li a').hover(function(){
    	$(this).stop().animate({ color: "#336699" }, 600);
		},function() {
    	$(this).stop().animate({ color: "#666" }, 500);
	});
	
	$('.home-nav-contain ul li a').hover(function(){
    	$(this).stop().animate({ color: "#bcbcbd" }, 700);
		},function() {
    	$(this).stop().animate({ color: "#858a92" }, 500);
	});
	
		$('.home-nav-contain ul ul li a').hover(function(){
    	$(this).stop().animate({ color: "#336699" }, 500);
		},function() {
    	$(this).stop().animate({ color: "#fff" }, 400);
	});
	

});




