$(document).ready(function(){
						   
//Fade in and out on Thumb nails
//	$("img.thumb").hover(function() {
//		$(this).fadeTo('slow', 0.7);
//        }, function() {
//        $(this).stop().fadeTo('fast',1 );
//    });		

//Hide Rating Until hover over on thumb
	$("ul.col3 li").hover(function() {
		$(this).find('.post-ratings , .aux').fadeIn('fast');
		 }, function() {
        $(this).find('.post-ratings , .aux').fadeOut("fast");
	});

//Mark Odd numbered list items
	$("ul#entries li:odd").addClass("odd");

//Link Directory Hilight
	$("ul.links").children("li").find("a:odd").addClass("odd");
	$("ul.links").children("li").find("a:last").css("border-bottom","none");
	$("ul.links").children("li").find("a:first").css("border-top","none");
	
//Open External Links in New Window
	$('.url a[href^="http://"]')	.attr({ target: "_blank" });
	$('a[href^="http://"].target')	.attr({ target: "_blank" });
	

//Toggle Effect on Side Navigation
//	$("h2.gallery").click(function(){
//	  $("#gallery").slideToggle("slow,");
//	});
//	$("h2.gallery").toggle(function(){
//	  $(this).addClass("active"); 
//	  }, function () {
//      $(this).removeClass("active");
//	});
//	
//	$("h2.resource").click(function(){
//	  $("#resource").slideToggle("slow,");
//	});
//	$("h2.resource").toggle(function(){
//	  $(this).addClass("active"); 
//	  }, function () {
//      $(this).removeClass("active");
//	});



});
