// <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
//
// $Id$
//

var siteDefaultLanguage = 'en';


jQuery(document).ready(function() {
	// Only handle click on inactive tabs
	$('.led-tab-button-off').click(function() {
		var url = null;
		
		switch (this.id) {
			case 'tab1':
				url = '/global/products/led/products.php';
				break;

			case 'tab2':
				url = '/global/products/led/technology.php';
				break;

			case 'tab3':
				url = '/global/products/led/savings.php';
				break;

			case 'tab4':
				url = '/global/products/led/news.php';
				break;

			case 'tab5':
				url = '/global/products/led/case_studies.php';
				break;
		}
		
		if (url != null) {
			if (currentLocale2 != siteDefaultLanguage) {
				url += '?lc2=' + currentLocale2;
			}
			
			window.location.href = url;
		}
	});
	
	//
	$('#changeLocale2To').change(function() {
		var url = thisPageURL;

		if (thisPageQS.length > 0) {
			url += '?' + thisPageQS;
		}

		if ($(this).val() != siteDefaultLanguage) {
			if (thisPageQS.length > 0) {
				url += '&';
			} else {
				url += '?';
			}
			
			url += 'lc2=' + $(this).val();
		}

		window.location.href = url;
	});
	
	//
	try {
		jQuery('a[@rel*=lightbox-pm]').lightBox(lightBoxConfig);
	} catch(e) {}
});
