var bliss = { src: '/bliss.swf' };sIFR.activate(bliss);sIFR.replace(bliss, {  selector: '.plugin h1',  css: [ 	'.sIFR-root { color: #00689D; text-align: center; font-size: 40px; }',   ],  wmode: 'transparent'});sIFR.replace(bliss, {  selector: 'h1',  css: [ 	'.sIFR-root { color: #001C3B; text-align: center; font-size: 20px; }',   ],  wmode: 'transparent'});sIFR.replace(bliss, {  selector: 'dd h3',  css: [ '.sIFR-root { color: #00689D; }' ],  wmode: 'transparent'});sIFR.replace(bliss, {  selector: 'h2',  css: [ '.sIFR-root { color: #000000; }' ],  wmode: 'transparent'});$(document).ready(function() {//	$('.screenshots a:first').addClass('current');//	newRel = $('.screenshots a:first').attr('rel');  //	$('.window li').hide();//	$('.window li.'+newRel).fadeIn(500);//	$('.screenshots a').click(function() {//		animateArrow('arrow',$(this));//		$('.screenshots a.current').removeClass('current');//		$(this).addClass('current');//		rel = $(this).attr('rel')//		$('.window li:visible').fadeOut(350, function(){//			$('.window li.'+rel).fadeIn(350);      //		});   //		return false;//	});	tooltip();	$('.faq li a.question').click(function() {		$(this).toggleClass('selected');		$(this).next('div.answer').toggle();		return false;	});});function Snippets(){ $("#subcontent li").hoverIntent({    	     sensitivity: 3, // number = sensitivity threshold (must be 1 or higher)    	     interval: 500, // number = milliseconds for onMouseOver polling interval    	     over: Glow, // function = onMouseOver callback (REQUIRED)    	     timeout: 500, // number = milliseconds delay before onMouseOut    	     out: Fade // function = onMouseOut callback (REQUIRED)    	}); 	} function Glow() { $(this).children('p').fadeIn("slow"); }function Fade() { $(this).children('p').fadeOut("slow"); }function Ticker(){			$('#latestnews').innerfade({			speed: 1000,			timeout: 5000,			type: 'sequence'		});}/* function animateArrow(arrow,onLink){	offset = onLink.offset();	offset_col = $('#plugins').offset();	if(arrow == 'arrow') {		plusOffset = 59;	} else {		plusOffset = 0;	}	goLeft = ((offset.left - offset_col.left) + plusOffset);	$('#'+arrow).animate({ left: goLeft }, 500);  } function Rotation(){	if($('#thumbs a').hasClass('on')) {} else {		if($('#thumbs a.current').parent().next().children(":first").is('a')){			nextBlock = $('#thumbs a.current').parent().next().children(":first");		} else {			nextBlock = $('#thumbs a:first');		}		$('#thumbs a.current').removeClass('current');		nextBlock.addClass('current');		animateArrow('arrow', nextBlock);		$('#desc span:visible').fadeOut(350, function(){			$('#desc span.'+nextBlock.attr('rel')).fadeIn(350);      		});		var t2 = setTimeout("Rotation()",4000);    	}} */function Tabs(){				var tabs = $('.plugin .col-main > div');	    tabs.filter(':first').show();		tabs.history();				$('#desc li a').click(function () {			tabs.hide().filter(this.hash).show();			$('#desc li a').removeClass('selected');			$(this).addClass('selected');		}).filter(':first').click();            $.ajaxHistory.initialize();}function Slides(){			$('#display ul').innerfade({			speed: 1000,			timeout: 5000,			type: 'sequence',			containerheight: '220px'		});}/* function Sprite() {		$('#menu li > a').css('opacity', 0).each(function () {		$(this).hover(function () {			$(this).fadeTo(700, 1);		}, function () {			$(this).fadeTo(700, 0);		});	if($('#menu li').hasClass('on')) { $('#menu li.on a').css('opacity', 1).stop; }	});   	} */this.tooltip = function(){				xOffset = 30;	yOffset = 60;				$(".tooltip").hover(	function(e){											  		this.t = this.title;		this.title = "";									  		$("body").append("<div id='tooltip'>"+ this.t +"</div>");		$("#tooltip")			.css("top",(e.pageY - yOffset) + "px")			.css("left",(e.pageX + xOffset) + "px")			.fadeIn("fast");		    },	function(){		this.title = this.t;		        $('#tooltip').remove();     });		$(".tooltip").mousemove(function(e){		$("#tooltip")			.css("top",(e.pageY - yOffset) + "px")			.css("left",(e.pageX + xOffset) + "px");	});			};