$(function(){
	
	// CORNERS
	$("#content").corner();
	$("#header").corner("bottom");
	
	$("#navi ul li.active a").corner("top");
	
	$("#navi ul li").hover(function(){	
		if ( $(this).hasClass("active") ) {} else {
			$(this).addClass("hover");
			$(this).corner("top");
		}
	}, function(){
		if ( $(this).hasClass("active") ) {} else {
			$(this).removeClass("hover");
			$(this).uncorner();
			if($(this).is(":last-child")){
				$(this).corner("tr");
			}
			if($(this).is(":first-child")){
				$(this).corner("tl");
			}
		}

	});
	
	// Referenssi kuvat
	
	$(".referenssi.kuvat").cycle({
		prev:    '#prev',
		next:    '#next',
		timeout: 0

	});

	//SEARCH
	var searchPlaceholder = $("input[name=dig_query]").attr("value");
	$("input[name=dig_query]").focus(function(){
		$(this).attr("value","");
	}).blur(function(){
		if($(this).attr("value") == ""){
			$(this).attr("value",searchPlaceholder);
		}
	});
	
});

function showSarja(url) {
window.open(url,'sarja','scrollbars=yes,resizable=yes,location=no,toolbar=no,height=600,width=650');
}
