/*
	Custom JS (jquery) for Consilium
	asmarterapproach.com
	by Chris Dapkiewicz except where noted (jquery, easySlider etc)
*/
$(document).ready(function() {
    $('.top-nav a')
	    .css({ backgroundPosition: "0 0" })
	    .mouseover(function() {
	        $(this).stop().animate(
			    { backgroundPosition: "(0 -24px)" },
			    { duration: 200 })
	    })
	    .mouseout(function() {
	        $(this).stop().animate(
			    { backgroundPosition: "(0 0)" },
			    { duration: 100 })
	    })
	$('.top-nav .active a')
        .css({ backgroundPosition: "0 -48px"} )
	    .mouseover(function() {
	        $(this).stop()
	    })
	    .mouseout(function() {
	        $(this).stop()
	    }) 
		
    });
		
