// WZA Portal page

$(function(){ 

	// JQ - Cufon
	Cufon.replace('.contain-sb span', {fontFamily: 'Cronos Pro', fontSize:'16px'});
	Cufon.replace('.contain-sb a, .contain-sb span span', {fontFamily: 'Cronos Pro', fontSize:'14px'});
	Cufon.replace('#accordion h3, .boxheader4 h1', {fontFamily: 'Cronos Pro'});

	// JQ - Corner
	settings = {
	tl: {radius: 12},
	tr: {radius: 12},
	bl: {radius: 12},
	br: {radius: 12},
	antiAlias: false,
	autoPad: false,
	validTags: ["div"]
      }
	$('.bannerimg2').corner(settings);

	// JQ - Font sizer
	fontResizer('1.0em','1.12em','1.15em');

	// JQ - Table zebra stripings
	$(".stripeMe tr").mouseover(function(){$(this).addClass("over");}).mouseout(function(){$(this).removeClass("over");});
	$(".stripeMe tr:even").addClass("alt");
	$('tr').bind('click', function(){window.location = $('a:first', this).attr('href');
	});

	// JQ - banner rotate
	$('ul#listticker_rotate').innerfade({
	speed: 1000,
	timeout: 5000,
	type: 'sequence',
	containerheight: '85px'
	});
});


