/**
 * @package Earth greetings website
 * @author Bonsai Media Christian Duller
 * @version 1.0
 * @copyright 2010, Bonsai Media
*/

/* site object which contains all our functions/etc */
var main = main || {};

/* document ready.... magic happens here */
$(document).ready(function(){
	main.init();
});

//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////


/**
 * Initialise the Earth greetings website and various features.
 */
main.init = function() {
	main.initDropdown();
	$('a').initExternalLinks();
	
	$("a[rel='product_lightbox']").colorbox();

}


/** 
 * Initialise Dropdown menu
 */
main.initDropdown = function() {
	
	$('.dropdown-menu').mouseenter(function () {
		$('.down-list', this).slideDown(50);
	})
	
	$('.dropdown-menu').mouseleave(function () {
		obj = this;
		$('.down-list', this).slideUp(50);
	})
	

}


/**
 * Initialises external links (valid xHTML method), by going
 * through elements and checking if they have a "rel" attribute set
 * to "external".
 */
$.fn.initExternalLinks = function() {
	$(this).each(function() {
		obj = jQuery(this);
		if(obj.attr('rel') == 'external') obj.attr('target', "_blank");
	});
}

