// remap jQuery to $
(function($){})(window.jQuery);


/* trigger when page is ready */
$(document).ready(function (){

	// your functions go here
	
    $("#ArtistsRecommend").cycle();
    $("#Slideshow").cycle({
    fx:'scrollLeft',
    speed:500,
    timeout:8000
    });

    $("#Slideshow2").cycle();

});


/* optional triggers

$(window).load(function() {
	
});

$(window).resize(function() {
	
});

*/
