rC = new DHTMLgoodies_roundedCorners();
rC.addTarget('content',35,35,'#000000','#333333',0,null);
rC.init();

$("#galeria_th a").hover(function() {
		$(this).not(".active").fadeTo("fast",1);
		$(this).not(".active").css("position", "relative").css("left", 0).css("top", 0); 
	}, function() {
		$(this).not(".active").fadeTo("fast",0.5);
	}
);

$("#menu a").hover(function() {
	$(this).not(".active").fadeTo("fast",0.7);
	$(this).not(".active").css("position", "relative").css("left", 0).css("top", 0); 
	}, 
	function() {
		$(this).not(".active").fadeTo("fast",1);}
	);

$("#galeria_th a").click(function() {
												 
		$(this).addClass("active");
		$(this).siblings().removeClass("active").fadeTo("fast",0.5);

		$("#photoslider").fadeOut("fast").hide().attr({"src": $(this).attr("href")});
		$(".klik").attr({"href": $(this).attr("href")});
		return false;
	});

$("#photoslider").load(function(){
		$("#photoslider:hidden").fadeIn("slow");
		return false;
		});

$("a[rel~='external']").click( function() {
	window.open( $(this).attr("href") );
	return false;
	});

$("a[rel~='external-link']").click( function() {
	window.open( $(this).attr("href") );
	return false;
	});


