/*
 * jQuery Scripts
 * Version: 0.2
 *
 * Copyright (c) 2008 Michael Zahno, Smartforce.ch
 * http://www.smartforce.ch
*/


$(document).ready(function() {
	
	// Zebra-Tables
	$("table.hoverTable tbody tr:nth-child(odd)").addClass("odd");
	$("table.hoverTable tbody tr:nth-child(even)").addClass("even");
	$("table.zebraTable tbody tr:nth-child(odd)").addClass("odd");
	$("table.zebraTable tbody tr:nth-child(even)").addClass("even");
	
	// Box Open / Close
	$('.boxHead span').click(function() {
		$(this).toggleClass('open').parent('.boxHead').next('.boxContent').slideToggle('fast');
	});
	
	// Dropdownmenu
	$('#multi-ddm').dropDownMenu({parentMO: 'parent-hover', childMO: 'child-hover1'});

});
