// JavaScript Document
// manjographics / famefabrik / compete court

$(document).ready(function(){
						   
	//$("#something").click(function() { 
								   
	//});	
	
	
	$('.table li:nth-child(1n + 2)').css('borderTop', '1px dashed #666666');
	$('.table li:nth-child(2n)').css('backgroundColor', '#333');
	
	
	$("#navigation a, #footer a, .jhover").hover(
  		function () {
   		$(this).animate({opacity: 0.5}, 80, function() {});
  		}, 
  	function () {
  	  $(this).animate({opacity: 1}, 50, function() {});
 		}
		);
	
	
	$(".gallery_picwrapper").hover(
  		function () {
   		$(this).animate({opacity: 1}, 100, function() {});
  		}, 
  	function () {
  	  $(this).animate({opacity: 0.9}, 100, function() {});
 		}
		);

	
	
	
});

  

