/* SEARCH-RESULTS-BOX
**************************************************/
function toggleCategory(id) {
	if(document.getElementById('category'+id).style.display == 'none' || document.getElementById('category'+id).style.display == '') {
		document.getElementById('category'+id).style.display = 'block';
	} else {
		document.getElementById('category'+id).style.display = 'none';

	}		
}

/* ART-DETAIL CAROUSSEL */
$(document).ready(function()
{
	if ($.browser.msie && $.browser.version == '6.0') {
		DD_belatedPNG.fix('*');
		
		$('#nav_box ul li').hover(function() {
			$('img', this).css({ display: 'block' });
		}, function() {
			$('img', this).css({ display: 'none' });
		});
	}	

	if ($('#arts .carrousel').length > 0)
	{
		$("#arts .carrousel").jCarouselLite(
		{
			btnNext: ".carr-next",
			btnPrev: ".carr-prev",
			visible: 4,
			circular: false
		});
		
		$('#arts .carrousel a').click(function()
		{
			$(this).parents().find('.active').removeClass('active');
			$(this).parents('li').addClass('active');
			$('.vsl img').attr('src', $(this).attr('href'));
			$('.copyright').text($(this).attr('name'));
			
			return false;
		});
	}
	
	
	/* MENS AGENDA DETAIL */
	
	if ($('#mens .agenda').length > 0)
	{
		$('#mens .agenda ul a').click(function() {
			ajaxGetAgendaItems($(this).attr('rel'));
			return false;
		});
	}
});