/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
var $j = jQuery.noConflict();

$j(document).ready(function(){
		

    $j('#mycarousel').jcarousel({
         scroll: 1, visible: 1
    });


	$j(".slide-content").hide();
	$j(".show-hide").click(function(){
		
		$j(".slide-content").toggle();
		return false;
	})
})
