// JavaScript Document


$(document).ready(
	function() {
		
		
		$(".slider li").click(function(){
	        window.location=$(this).find("a").attr("href"); return false;
	    });
		
		$(".slider li").hover(function(){
		$(this).children(".darker").hide();							
		$(this).children(".hover").show();
		},function(){
		$(this).children(".darker").show();							
		$(this).children(".hover").hide();
		});
		
		$(".thumbs .item").click(function(){
	        window.location=$(this).find("a").attr("href"); return false;
	    });
		
		$(".thumbs .item").hover(function(){
		$(this).children(".darker").hide();							
		$(this).children(".hover").show();
		},function(){
		$(this).children(".darker").show();							
		$(this).children(".hover").hide();
		});

		$(".url .menu").hover(function(){
		$(this).addClass("hover");
		},function(){
		$(this).removeClass("hover");
		});
		
		$("tr:nth-child(even)").addClass("chet");
		
		/*
		$(document).ready(function(){
			$('.my-dropdown').sSelect();
		});
		*/
				
	});
