$(document).ready(function(){
	$('.this-month').click(function(){
		var url = $('.this-month h3 a').attr('href');
		window.location = url;
	});
	
	$('.home-featured .item').simpleFade();
	
	$('#navigation li a').prepend('<span><strong></strong></span>');
	
	
	
	$('#navigation li a').hover(function(){
		if ($(this).hasClass('active')) {
			return false;
		}
		else { 
			var image = $('strong', this);
			image.animate({
				top: 0
			}, 200);
		}
	}, function(){
		var image = $('strong', this);
		image.animate({
			top: '5px'
		}, 200);
	});
	
	$('#navigation ul li a').click(function(){
		$('#navigation ul li a').removeClass('active');
		$(this).addClass('active');
	});
	
	$(".barkimonials-list img").lazyload({
		placeholder : "css/images/blank.gif",
    	effect : "fadeIn"
	});
	
	if ($.browser.msie && $.browser.version == 6) {
		DD_belatedPNG.fix('h1#logo a img, .this-month .content li, .featured-image h3, .featured-image h4, .quick-menu h3, .special-links li, #footer h4.location, #footer .col-3 h4, #footer .col-3 .submit, #footer .col-4 li a img, #footer .dog, .events h3.special a');
	}
	
	
	
});




	
	

