
jQuery(function($) {

	/*************************** THREEVIEW ********************************/
	// Initialize treeview plugin (Left product menu)
	$("#products").treeview({
		prerendered: false,
		animated: "fast",
		collapsed: "true",
		toggle: function() {
			location.href = this.id;
		}
	});
	
	$("#products").css({'display' : ''});
	
	/*************************** VARIOUS TARGETS ********************************/
	//No borders on images 
	$("img").attr({'border' : '0'});
	
	
	/*************************** LIGHTBOX ********************************/
	$("a.lightbox").lightBox({
			overlayBgColor: '#000',
			overlayOpacity: 0.6,
			imageLoading: LOAD_ICON,
			imageBtnClose: '/images/icons/lightbox-btn-close.gif',
			containerResizeSpeed: 300
	 });

	/*************************** TOOLTIP ********************************/
	
	

	// Appends a questionmark to the span element for the tooltip
	// $('.showTooltip span[title]').append('<img style="vertical-align: bottom; padding-bottom: 1px;" src="/images/icons/information.png" />');

	// Initialize tooltip plugin
	$('span.showTooltipFrontend').tooltip({
		track: false,
		delay: 0,
		showURL: false,
		extraClass: "freightTooltip",
		showBody: " -- ",
		fade: 120,
		top: 10,
		left: 10
	})
	
	
	
});
