$(document).ready(function(){
//Nav Slide
	//Purple
		$("#pnav a.p").mouseover(function(){
		$("#pnav .purple").stop().animate({borderLeftWidth:'226px'},{queue:false, duration:300 })
	});
		$("#pnav a.p").mouseout(function(){
		$("#pnav .purple").stop().animate({borderLeftWidth:'10px'},{queue:false, duration:300 })
	});
	
	//Green
		$("#pnav a.g").mouseover(function(){
		$("#pnav .green").stop().animate({borderLeftWidth:'226px'},{queue:false, duration:300 })
	});
		$("#pnav a.g").mouseout(function(){
		$("#pnav .green").stop().animate({borderLeftWidth:'10px'},{queue:false, duration:300 })
	});
	
	//Maroon
		$("#pnav a.m").mouseover(function(){
		$("#pnav .maroon").stop().animate({borderLeftWidth:'226px'},{queue:false, duration:300 })
	});
		$("#pnav a.m").mouseout(function(){
		$("#pnav .maroon").stop().animate({borderLeftWidth:'10px'},{queue:false, duration:300 })
	});
	
	//Gold
		$("#pnav a.gd").mouseover(function(){
		$("#pnav .gold").stop().animate({borderLeftWidth:'226px'},{queue:false, duration:300 })
	});
		$("#pnav a.gd").mouseout(function(){
		$("#pnav .gold").stop().animate({borderLeftWidth:'10px'},{queue:false, duration:300 })
	});
	
	//:hover highlighting	
		$('.twotwo, .onetwo, .oneone, .onefour, .twoone, .ebox, .zine, .full, .threeone, .fourone').hover(function(){
    	$(this).stop().animate({
    		backgroundColor: '#f0f7fe', 
    		borderTopColor: '#a1c3e2', 
    		borderRightColor: '#a1c3e2',
    		borderBottomColor: '#a1c3e2',
    		borderLeftColor: '#a1c3e2'
    	},{queue:false, duration: 150 });
		}, function() {
    	$(this).stop().animate({
    		backgroundColor: '#fff',	
    		borderTopColor: '#c2d0dd', 
    		borderRightColor: '#c2d0dd',
    		borderBottomColor: '#c2d0dd',
    		borderLeftColor: '#c2d0dd'
    	});
    });
});
