
$(document).ready(function($){
  
  //$('a.lightbox').lightBox();

  $(".popup").click(function(){ 
    window.open($(this).attr("href")); 
    return false; 
	}); 
  
  $(".popupWindow").click(function(){ 
    window.open($(this).attr("href"), '_blank', 'directories=no,location=no,menubar=yes,resizable=yes,scrollbars=yes,status=yes,toolbar=no,width=1024,height=768'); 
    return false; 
	}); 
  
  $("body").addClass($.browser+$.browser.version.substr(0,1));
	
	$.each($.browser, function(i, val) {
 	 if(i=="msie" && $.browser.version.substr(0,3)=="6.0"){
	 $.getScript("http://wwwdata.appli-box.com/scripts/pngfix.js");
	 $.getScript("http://wwwdata.appli-box.com/scripts/minmax.js");}
	});
	
	$('.animation').cycle({pause:  1 });
	
	$('.scrollup').cycle({ 
    fx: 'scrollUp' 
	});
	
	$("#tabList > ul").tabs({ fx: { opacity: 'toggle' } });
  
});

