/*@cc_on 
	@if (@_win32)
	try {
	  document.execCommand('BackgroundImageCache', false, true);
	} catch(e) {}
	@end
@*/

var	FCfunctions = {
	fctabs : function(){
		$("#tab-content > ul").tabs({ selected: 0, fx: { opacity: 'toggle' }});
	}
}

$(document).ready(function(){	
	if ($("#tab-content").length){
		FCfunctions.fctabs();
	}
		
})