/**
 * @author Cernos(20.10.2008)
 * E-Mail: adm.styland@gmail.com
 * icq: 984-964
 * (http://www.humorland.org)
 */
$(document).ready(function(){
	
	if ( !$.browser.msie ){

        $(".i_projects a img").hover(function(){
            $(this).fadeTo('fast',0.3);
        },function(){
            $(this).fadeTo('fast',1);
        });

    }
    
	var path = document.location.pathname;
	
	if(document.location.pathname.search("/bad")<0 && document.location.pathname.search("/best")<0 && document.location.pathname.search("/old")<0){
		$(".sort_public a:nth-child(1)").attr({
			"class": "active"
		});
	}else{
		$(".sort_public a[@href$=" + document.location.pathname + "]").attr({
			"class": "active"
		});	
	}
	
	
});
