﻿    var wW; var wH;
     jQuery.noConflict();
jQuery(document).ready(function(){	
	jQuery("#bigBoxContent").easySlider({
		auto: true,
		continuous: true,
		numeric: true,
		pause:5000
	});
	jQuery("#program").easySlider({
		auto: true,
		continuous: true,
		pause:6000,
		controlsShow:false
	});
	jQuery("#promo_banners").easySlider({
		auto: true,
		continuous: true,
		pause:3000,
		controlsShow:false
	});
	SetLayout();
	jQuery.event.add(window, "load", SetLayout);
	jQuery.event.add(window, "resize",SetLayout);
	
});
function SetLayout()
{
    wW = jQuery(window).width();
	var obj = jQuery("#contentLeft");
	var offset = obj.offset();
	var add = jQuery("#contentLeft").width();
	var ml = offset.left + add/2 + "px";
	jQuery("ol#controls").css("left",ml);
}
