﻿/*--- Carousel ---*/

jQuery(document).ready(function() {
    jQuery('#sidebar_widget').jcarousel({
        vertical:true,
        scroll:2
    });
});

/*--- Popup Boxes ---*/

$(function () {
	
	/*--- Normal Show Hide with no Fadein and Out ---*/
	
    /*$("#sidebar_widget li a").click(function () {
    	var $this = $(this);
    	$("#scenarios div").hide();
    	$("#scenario" + $this.attr("id").replace(/switch/, "")).show();

    });*/

/*--- Show Hide with Fadein and Out ---*/

 $("#sidebar_widget li a").mouseover(function () {
    	var $this = $(this);
    	$("#scenarios div").hide();
    	$("#scenario" + $this.attr("id").replace(/switch/, "")).fadeIn('slow');    
	});

	$("#scenarios").mouseout(function () {
    	var $this = $(this);
    	$("#scenarios div").fadeOut('slow');
    });

	/*$("#scenarios").mouseout(function () {
    	var $this = $(this);
    	$("#scenarios div").hide();
    });*/
});
