// 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 .photos1").hover(function(){
		$(this).children(".darker").hide();							
		$(this).children(".hoverd").show();
		},function(){
		$(this).children(".darker").show();							
		$(this).children(".hoverd").hide();
		});

		$(".url .menu").hover(function(){
		$(this).addClass("hover");
		},function(){
		$(this).removeClass("hover");
		});
		
		$("tr:nth-child(even)").addClass("chet");
		
		try {
			$('.my-dropdown').sSelect();
		} catch (e) {}	
	});