$(document).ready(function(){
	
	/*
		Navigation Actions
	*/
	
	$('#nav li').hover(function() {
		var currentItem = this;		
		
		$(this).find('a').css({
			color : '#b3370f'
		});
		
		$('.nav-shelf-hover').css({'visibility' : 'visible'})
		
		$('.nav-shelf-hover').animate({
			'left' : $(currentItem).position().left - 104 + $(currentItem).width()/2 - 12
		}, { 
			duration: '500',
			easing: 'easeOutExpo',
			queue: false
		});
		
	}, function() {
		$(this).find('a').css({
			color : '#1c4654'
		});
		
		$('.nav-shelf-hover').css({'visibility' : 'hidden'})
	});
	
	$('#nav-home').hover(function() {
		$(this).find('img').attr("src", home_img_hover);
	}, function() {
		$(this).find('img').attr("src", home_img_src);
	});
	
	/*
		Network Dropdown Actions
	*/
	
	// $('ul.dropdown').hover(function() {
	// 		
	// 	}, function() {
	// 		this
	// 	});
	
});

$('#nav').ready(function() {
	$('.nav-shelf-mid').width($('#nav-shelf').width() - 50);
});
