var jq = jQuery.noConflict();

jq(document).ready(function($)
{

	//$(".tab-triggers ul").tabs($(".tab-content div.tabs > div"), {
	$(".topTabs").tabs($(".tab-content div.tabs > div"), {
		//current: "current",
		//initialIndex: "2",
		effect: "default"
	});

	
	$('.tab-triggers ul > li').each(function(indexInArray, valueOfElement){
		if((indexInArray % 2) == 0) {
			$(this).addClass('tableGreen');
		} else {
			$(this).addClass('tableLimeGreen');
		}
	});
	
	$('.tab-content .tabs > div').each(function(indexInArray, valueOfElement){
		if((indexInArray % 2) == 0) {
			$(this).addClass('tableGreen');
		} else {
			$(this).addClass('tableLimeGreen');
		}
	});
	
});

//Arek, zmiana kolorow tytulow w boxach SmartEco
jq(document).ready(function($)
	{
		//pierwszy box
		$("a[href=/0ee016cf25ad31e156aa458ef89bf945] span.t").css("color", "#005e84");
		$("a[href=/0ee016cf25ad31e156aa458ef89bf945] span.c strong").css("color", "#005e84");
		
		//box o linku kompensacja...
		$("a[href=/kompensacja_komunikat] span.t").css("color", "#005e84");
	});

/*
jq(document).ready(function($) {
	// select the overlay element - and "make it an overlay"
	$("img").overlay({
	
		// custom top position
		top: 260,
	
		// some mask tweaks suitable for facebox-looking dialogs
		mask: {
	
			// you might also consider a "transparent" color for the mask
			color: '#fff',
	
			// load mask a little faster
			loadSpeed: 200,
	
			// very transparent
			opacity: 0.5
		},
	
		// disable this for modal dialog-type of overlays
		closeOnClick: false,
	
		// load it immediately after the construction
		load: true
	
	});
});
*/

