// jQuery accordion
jQuery().ready(function(){
	$('.sidelist').accordion({
		autoHeight: false,
		navigation: true,
		collapsible: true,
		active: false
		
	});
	
});

jQuery().ready(function(){
	$('.sidecat').accordion({
		autoHeight: false,
		navigation: true,
		collapsible: true,
		active: false
		
	});
	
});


// jgallery
jQuery(function($) { $('ul.gallery').gallery({history: false}); var firstItem = $('ul.gallery li:first').addClass('active')}); 

// colorbox
		$(document).ready(function(){
				//assign the ColorBox event to elements
				$(".popup").colorbox({width:"70%", height:"93%", iframe:true});
				
				//Example of preserving a JavaScript event for inline calls.
				$("#click").click(function(){ 
					$('#click').css({"background-color":"#f00", "color":"#fff", "cursor":"inherit"}).text("Open this window again and this message will still be here.");
					return false;
				});
			});
			
			
// toggle cat
$(document).ready(function(){

$(".catcol").hover(function(){
$(this).find(".selected").toggle();
},
function(){
$(this).find(".selected").toggle();
});

});

