jQuery.noConflict();
	jQuery(document).ready( function(){ 
		jQuery('#leftcontainer').jScroll();
		jQuery('.homeslideshow').cycle({
			fx: 'scrollLeft' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		});
	jQuery('#leftcontainer').stop().animate({'marginLeft':'-130px'},10);
	jQuery('#leftcontainer').hover( function () {
		jQuery(this).stop().animate({'marginLeft':'0px'},200, function() { jQuery('#menulabel').fadeOut() } );
	}, function () {
		jQuery(this).stop().animate({'marginLeft':'-130px'},1000, function() { jQuery('#menulabel').fadeIn() } );
	 });
	  
	});

// Transition Values and Effects
//
// blindX
// blindY
// blindZ
// cover
// curtainX
// curtainY
// fade
// fadeZoom
// growX
// growY
// none
// scrollUp 
// scrollDown
// scrollLeft
// scrollRight
// scrollHorz
// scrollVert
// shuffle
// slideX
// slideY
// toss
// turnUp
// turnDown
// turnLeft
// turnRight
// uncover
// wipe
// zoom
//
//
// Duration of slide is set in jquery.cycle.min.js
//


