$(document).ready(function() {
	        $('#coin-slider').coinslider({ effect: 'straight', navigation: false, delay: 5000, spw:7, sph:5, hoverPause:false, links:false, width:700, height:400  });
	    
            $("a#ToogleSidebar0").click().toggle(function() {
                $('#sidebar0').animate({
                    width: '612'
                }, 'slow');
            }, function() {
                $('#sidebar0').animate({
                    width: '40'
                }, 'fast');
            });
            
            $("a#ToogleSidebar1").click().toggle(function() {
                $('#sidebar1').animate({
                    width: '612'
                }, 'slow');
            }, function() {
                $('#sidebar1').animate({
                    width: '40'
                }, 'fast');
            });
            
            $("a#ToogleSidebar2").click().toggle(function() {
                $('#sidebar2').animate({
                    width: '612'
                }, 'slow');
            }, function() {
                $('#sidebar2').animate({
                    width: '40'
                }, 'fast');
            });
        });
