var $h = jQuery.noConflict();
$h(document).ready(function(){
	$h("#sidenav").hide();
	$h(".drop").click(function(){
	 if(document.getElementById('sidenav').style.display == "none"){
		$h("#sidenav").slideToggle("fast",function(){
		});
	}else{
			$h("#sidenav").hide(function(){
			});	
		}
    });	
	
	$h('#widnext').click(function(){
			$h(this).hide();
			$h('#widcontentwrap').animate({marginLeft: "-210px"},800);
			$h('#widprev').fadeIn(1600);
		});
		
		$h('#widprev').click(function(){
			$h(this).hide();
			$h('#widcontentwrap').animate({marginLeft: "0px"},800);
			$h('#widnext').fadeIn(1600);
			
		});
		
}); 

