// With Magento, you must use jQuery in noConflict mode
// unless you want to go through and replace every single instance
// of Magento using prototype!
jQuery(document).ready(function($){
    // Inside of here, you can use jQuery like normal
	// i.e.   $("div").hide();

	// Initialize the homepage lookbook carousel
    $('#lookbook-carousel').jcarousel({
    	wrap: 'circular',
    	scroll: 1
    });
	
	// Setup a ColorBox gallery on the product page for links
	//  with rel="colorbox-gallery"
	$("a[rel='colorbox-gallery']").colorbox();
});