	$(document).ready(function(){
		$('.dropdown').hover(
			function() { $('ul', this).css('display', 'block'); },
			function() { $('ul', this).css('display', 'none'); });
		
		//$(".lightbox a").lightBox({fixedNavigation:true});
		
		$("a[rel='colorbox']").colorbox({slideshow:true, slideshowSpeed:"3000"});
		
		$("a.colorbox").colorbox();
		
		$(".divcolorbox a").colorbox();
		
		$('input[title]').inputHints();
		
		$('a.email').mailto();
		
		$('#tabs').tabs(2);
		
		$(".colorbox li a[rel='group']").colorbox({slideshow:true, slideshowSpeed:"3000"});
		
		$(".colorbox_iframe").colorbox({iframe:true, width:600, height:520});
		
		$(".colorbox_iframe800").colorbox({iframe:true, width:800, height:500});
		
		$(".colorbox_chart").colorbox({iframe:true, width:780, height:500});	
		
		$("#comment_komentar").maxLength(300);
		
		$(".zebra tr").mouseover(function(){
			$(this).addClass("over");
		}).mouseout(function(){
			$(this).removeClass("over");
		});
		$(".zebra tr:odd").addClass("odd");
		$(".zebra tr:even").addClass("even");		

	});
	
