/*================================
 Last Updated: 07/14/2010
    Changed $ to jQuery to be able to work with sitecore's page editors
================================*/
jQuery(document).ready(function() {
	/*================================
	 Add class 'left' to first <div>
	 in Bottom Callouts
	================================*/
	if(('#bottom-callouts div').length > 1) {
		jQuery('#bottom-callouts div:first').addClass('first');
	}

	/*================================
	 Show/Hide Product Images
	================================*/
	jQuery('#image').tabs('.left > .linked-image', { initialIndex: 0 });
});
