/*** *** *** *** *** ***
* @package Wordalist
* @file    init.js
* @start   May 19th, 2010
* @author  David Johansson
* @license Commercial
* @version 1.0.0
* @link    http://www.wordalist.com
*** *** *** *** *** ***/

// Init jQuery to use $j instead of $j
var $j = jQuery.noConflict();

$j(document).ready(function(){
	
	/* init navigation */
	if($j('#menu-menu_header')) {
		$j('#menu-menu_header').droppy();
	}
	
	// Working now...
	$j.fn.colorbox.initDefaults = {
		close: "Close",
		prev: "Previous",
		next: "Next"
	};
	
});