$(document).ready(function() {

	$("a[rel^=lightbox]").fancybox({
		speedIn		: 0,
		speedOut	: 0,
		changeSpeed : 150,
		changeFade	: 50,
		hideOnContentClick : true
	});
	
	$("select[name=sel_color]").each(function(i, item) {
		$(item).attr('old_index', $(item)[0].selectedIndex);
	});
	
	$("select[name=sel_color]").change(function() {
		if ($('option:selected', $(this)).attr('disabled')) {
			$(this)[0].selectedIndex = $(this).attr('old_index');
			return false;	
		}
		
		var tmp = window.location.href;
		tmp = tmp.split('/');
		tmp[ tmp.length - 1 ] = $(this).val();
		
		window.location.href = tmp.join('/');
	});
	
	
	$("#sel_currency").change(function() {
		var tmp = window.location.href;
		
		if (tmp.indexOf('?') > -1) {
			window.location.href = tmp + '&change_currency=' + $(this).val();
		} else {
			window.location.href = tmp + '?change_currency=' + $(this).val();
		}
	});
	
});
