function miniSwitcher(num, height)
{
	if($("div.box_"+num).attr("style") != "")
	{
		$("div.box_"+num).attr("style", "");
		$("a#mini_"+num).html("less<img src='sysimages/less_bullet.png' border='0' />")
	}
	else
	{
		$("div.box_"+num).attr("style", "height: "+height+"px; overflow: hidden;");
		$("a#mini_"+num).html("more<img src='sysimages/more_bullet.png' border='0' />")
	}
}

$(document).ready(function(){
	/**
	 * Shadowbox
	 */
	var options = {
	    resizeLgImages:     true,
	    displayNav:         true,
	    handleUnsupported:  'remove',
	    keysClose:          ['l', 27], // c or esc
	    autoplayMovies:     false
	};
	
	Shadowbox.init(options);
	
	/**
	 * First news item
	 */
	$(".firstTitle").click(function () {
		if($("div.first").attr("style") != "")
		{
			$("div.first").attr("style", "");
			$("a#first").html("less<img src='sysimages/less_bullet.png' border='0' />")
		}
		else
		{
			$("div.first").attr("style", "height: 255px; overflow: hidden;");
			$("a#first").html("more<img src='sysimages/more_bullet.png' border='0' />")
		}
	});
		
	$("#first").click(function () {
		if($("div.first").attr("style") != "")
		{
			$("div.first").attr("style", "");
			$("a#first").html("less<img src='sysimages/less_bullet.png' border='0' />")
		}
		else
		{
			$("div.first").attr("style", "height: 255px; overflow: hidden;");
			$("a#first").html("more<img src='sysimages/more_bullet.png' border='0' />")
		}
	});
});