
$(document).ready(function(){	
	$(".news_toggle_container").hide();
	$("h6.news_trigger").click(function(){
		$(this).toggleClass("active").next().slideToggle("slow");
		return false;
	});
});

function addEvent(obj,type,fn){if(obj.addEventListener){obj.addEventListener(type,fn,false);EventCache.add(obj,type,fn);}
else if(obj.attachEvent){obj["e"+type+fn]=fn;obj[type+fn]=function(){obj["e"+type+fn](window.event);}
obj.attachEvent("on"+type,obj[type+fn]);EventCache.add(obj,type,fn);}
else{obj["on"+type]=obj["e"+type+fn];}}
var EventCache=function(){var listEvents=[];return{listEvents:listEvents,add:function(node,sEventName,fHandler){listEvents.push(arguments);},flush:function(){var i,item;for(i=listEvents.length-1;i>=0;i=i-1){item=listEvents[i];if(item[0].removeEventListener){item[0].removeEventListener(item[1],item[2],item[3]);};if(item[1].substring(0,2)!="on"){item[1]="on"+item[1];};if(item[0].detachEvent){item[0].detachEvent(item[1],item[2]);};item[0][item[1]]=null;};}};}();addEvent(window,'unload',EventCache.flush);function correctPNG(){for(var i=0;i<document.images.length;i++){var img=document.images[i]
var imgName=img.src.toUpperCase()
if(imgName.substring(imgName.length-3,imgName.length)=="PNG"){var imgID=(img.id)?"id='"+img.id+"' ":""
var imgClass=(img.className)?"class='"+img.className+"' ":""
var imgTitle=(img.title)?"title='"+img.title+"' ":"title='"+img.alt+"' "
var imgStyle="display:inline-block;"+img.style.cssText
if(img.align=="left")imgStyle="float:left;"+imgStyle
if(img.align=="right")imgStyle="float:right;"+imgStyle
if(img.parentElement.href)imgStyle="cursor:hand;"+imgStyle
var strNewHTML="<span "+imgID+imgClass+imgTitle
+" style=\""+"width:"+img.width+"px; height:"+img.height+"px;"+imgStyle+";"
+"filter:progid:DXImageTransform.Microsoft.AlphaImageLoader"
+"(src=\'"+img.src+"\', sizingMethod='image');\"></span>"
img.outerHTML=strNewHTML
i=i-1}}}
var rollovers={obj:Object,init:function(){for(var i=0,over;over=document.getElementsByTagName('img')[i];i++){if(over.className.indexOf('rollover')>=0){rollovers.preload(over);addEvent(over,'mouseover',rollovers.show);addEvent(over,'mouseout',rollovers.hide);}}},preload:function(e){var img=new Image;var ext=e.src.substring(e.src.length-4,e.src.length);var name=e.src.substring(0,e.src.length-4);img.src=name+suffix+ext;},show:function(e){var ext=this.src.substring(this.src.length-4,this.src.length);var name=this.src.substring(0,this.src.length-4);this.src=name+suffix+ext;},hide:function(e){this.src=this.src.replace(suffix,'');}}
var rollovers_ie={obj:Object,init:function(){if(document.getElementsByTagName('span').length<1)
setTimeout('rollovers_ie.init()',500);for(var i=0,span;span=document.getElementsByTagName('span')[i];i++){if(span.className.indexOf('rollover')>=0){rollovers_ie.preload(span);addEvent(span,'mouseover',rollovers_ie.show);addEvent(span,'mouseout',rollovers_ie.hide);}}},preload:function(e){var img=new Image;var filter=e.style.filter;var src=filter.substring(filter.indexOf("src='")+5,filter.indexOf("',"));var ext=src.substring(src.length-4,src.length);var name=src.substring(0,src.length-4);img.src=name+suffix+ext;},show:function(e){var filter=this.style.filter;var src=filter.substring(filter.indexOf("src='")+5,filter.indexOf("',"));var ext=src.substring(src.length-4,src.length);var name=src.substring(0,src.length-4);this.style.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader"+"(src=\'"+name+suffix+ext+"\', sizingMethod='image')";},hide:function(e){var filter=this.style.filter;var src=filter.substring(filter.indexOf("src='")+5,filter.indexOf("',"));this.style.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader"+"(src=\'"+src.replace(suffix,'')+"\', sizingMethod='image')";}}
function pngFrame(){var imgs=document.images;for(var i=0,img;img=imgs[i];i++){if(img.className.indexOf('frame')>=0){var bgSrc=img.src;img.style.background="url("+bgSrc+")";img.src=png_overlay;}}}
if(navigator.userAgent.indexOf('MSIE')>=0)
addEvent(window,'load',correctPNG);addEvent(window,'load',pngFrame);if(navigator.userAgent.indexOf('MSIE')>=0)
addEvent(window,'load',rollovers_ie.init);addEvent(window,'load',rollovers.init);


(function($){$.fn.jCarouselLite=function(o){o=$.extend({btnPrev:null,btnNext:null,btnGo:null,mouseWheel:false,auto:null,speed:200,easing:null,vertical:false,circular:true,visible:3,start:0,scroll:1,beforeStart:null,afterEnd:null},o||{});return this.each(function(){var b=false,animCss=o.vertical?"top":"left",sizeCss=o.vertical?"height":"width";var c=$(this),ul=$("ul",c),tLi=$("li",ul),tl=tLi.size(),v=o.visible;if(o.circular){ul.prepend(tLi.slice(tl-v-1+1).clone()).append(tLi.slice(0,v).clone());o.start+=v}var f=$("li",ul),itemLength=f.size(),curr=o.start;c.css("visibility","visible");f.css({overflow:"hidden",float:o.vertical?"none":"left"});ul.css({margin:"0",padding:"0",position:"relative","list-style-type":"none","z-index":"1"});c.css({overflow:"hidden",position:"relative","z-index":"2",left:"0px"});var g=o.vertical?height(f):width(f);var h=g*itemLength;var j=g*v;f.css({width:f.width(),height:f.height()});ul.css(sizeCss,h+"px").css(animCss,-(curr*g));c.css(sizeCss,j+"px");if(o.btnPrev)$(o.btnPrev).click(function(){return go(curr-o.scroll)});if(o.btnNext)$(o.btnNext).click(function(){return go(curr+o.scroll)});if(o.btnGo)$.each(o.btnGo,function(i,a){$(a).click(function(){return go(o.circular?o.visible+i:i)})});if(o.mouseWheel&&c.mousewheel)c.mousewheel(function(e,d){return d>0?go(curr-o.scroll):go(curr+o.scroll)});if(o.auto)setInterval(function(){go(curr+o.scroll)},o.auto+o.speed);function vis(){return f.slice(curr).slice(0,v)};function go(a){if(!b){if(o.beforeStart)o.beforeStart.call(this,vis());if(o.circular){if(a<=o.start-v-1){ul.css(animCss,-((itemLength-(v*2))*g)+"px");curr=a==o.start-v-1?itemLength-(v*2)-1:itemLength-(v*2)-o.scroll}else if(a>=itemLength-v+1){ul.css(animCss,-((v)*g)+"px");curr=a==itemLength-v+1?v+1:v+o.scroll}else curr=a}else{if(a<0||a>itemLength-v)return;else curr=a}b=true;ul.animate(animCss=="left"?{left:-(curr*g)}:{top:-(curr*g)},o.speed,o.easing,function(){if(o.afterEnd)o.afterEnd.call(this,vis());b=false});if(!o.circular){$(o.btnPrev+","+o.btnNext).removeClass("disabled");$((curr-o.scroll<0&&o.btnPrev)||(curr+o.scroll>itemLength-v&&o.btnNext)||[]).addClass("disabled")}}return false}})};function css(a,b){return parseInt($.css(a[0],b))||0};function width(a){return a[0].offsetWidth+css(a,'marginLeft')+css(a,'marginRight')};function height(a){return a[0].offsetHeight+css(a,'marginTop')+css(a,'marginBottom')}})(jQuery);

