// JavaScript Document

<!--CYCLE PLUGIN-->
$(document).ready(function() {
    $('#mainbanner_slideshow').cycle({
        fx:     'fade',
        speed:  1000,
		pause: 1,
		//easing: 'bounceout', 
        pager:  '#nav',
		timeout: 10000,
		delay:   10000,
		slideExpr: '.slide-container'
    });
    $('#adverts_wrapper').cycle({
        fx:     'fade',
        speed:  1000,
		pause: 1,
		//easing: 'bounceout', 
		timeout: 20000,
		delay:   15000,
		slideExpr: '.media_adverts'
    });
	
   // $("#quoteContainer").load("__randomquote.php");
	//set_interval();
	// On click of the Next button (id=updateQuote) if available
    $("#updateQuote").click(function(){
		clearInterval ( IntervalId );
        $("#randomquote-wrapper").fadeOut(function(){
            $("#quoteContainer").load("__randomquote.php");
		});
        $("#randomquote-wrapper").fadeIn("slow");
		set_interval();
    });
	
	function set_interval(){ // To automatically change tip
		IntervalId = setInterval(function() {
        $("#randomquote-wrapper").fadeOut(function(){
            $("#quoteContainer").load("__randomquote.php");
		});
        $("#randomquote-wrapper").fadeIn("slow");}, 15000);
	}
	
    $("#quoteContainer").load("__randomquote.php");
	set_interval();
	// On click of the Next button (id=updatetip) if available
    $("#updatetip").click(function(){
		clearInterval ( IntervalId );
        $("#randomquote-wrapper").fadeOut(function(){
            $("#quoteContainer").load("__randomquote.php");
		});
        $("#randomquote-wrapper").fadeIn();
		set_interval();
    });
	
});

