
function tagline() {
		  $(".tagline").fadeIn(12000);
}

function mycarousel_initCallback(carousel) {
			jQuery('.jcarousel-control a').bind('click', function() {
				carousel.scroll(jQuery.jcarousel.intval(this.id));
				return false;
			});
			jQuery('.jcarousel-scroll select').bind('change', function() {
				carousel.options.scroll = jQuery.jcarousel.intval(this.options[this.selectedIndex].value);
				return false;
			});
}

function carousel() {
    jQuery("#mycarousel").jcarousel({
        scroll: 1,
		visible: 1,
        initCallback: mycarousel_initCallback,
        buttonNextHTML: null,
        buttonPrevHTML: null
    });
}

function popup(){
		$(".popup").hide( function() {
			$(".popup").show("slow");
		});
}

function innerfade(){
		$('div.other_snews#one').innerfade({
				speed: 250,
				timeout: 5500,
				type: 'random',
				containerheight: '200px'
			});
		$('div.other_snews#two').innerfade({
				speed: 250,
				timeout: 7500,
				type: 'random',
				containerheight: '200px'
			});
}

