// JavaScript Document

//jCarouselLite initialize
$(function() {
  $(".jCarouselLite").jCarouselLite({
	btnNext: ".next",
    btnPrev: ".prev",
	/*easing: "easeinout",*/
    auto: 5000,
    speed: 1000,
	visible: 2,
	easing: "easeInOutCubic"
  });
});

//maxImage initialize
$(function(){
	jQuery('img.bgmaximage').maxImage({
		isBackground: true,
		overflow: 'auto',
		verticalAlign:'top'

 	});
});

//open Window
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

//tabs initialize
/*$(function(){
	
				// Tabs
				$('#tabs').tabs({
				fx: { height: 'toggle', opacity: 'toggle', duration: 300 }
				});
				
				//hover states on the static widgets
				$('#dialog_link, ul#icons li').hover(
					function() { $(this).addClass('ui-state-hover'); }, 
					function() { $(this).removeClass('ui-state-hover'); }
				);
				
			});*/
			
/*$(function(){			
	$('#tabs').tabs({
    select: function(event, ui) {
        var url = $.data(ui.tab, 'load.tabs');
        if( url ) {
            location.href = url;
            return false;
        }
        return true;
    }
});
});

*/
