/* ********************************************************************
	Default configuration properties.
******************************************************************** */

var defaults = {
	vertical: false,
	start: 1,
	offset: 1,
	size: null,
	scroll: 1,
	visible: null,
	animation: 'fast',
	easing: 'swing',
	auto: 0,
	wrap: null,
	initCallback: null,
	reloadCallback: null,
	itemLoadCallback: null,
	itemFirstInCallback: null,
	itemFirstOutCallback: null,
	itemLastInCallback: null,
	itemLastOutCallback: null,
	itemVisibleInCallback: null,
	itemVisibleOutCallback: null,
	buttonNextHTML: '<div></div>',
	buttonPrevHTML: '<div></div>',
	buttonNextEvent: 'click',
	buttonPrevEvent: 'click',
	buttonNextCallback: null,
	buttonPrevCallback: null
};
	
	// jquery has loaded
jQuery(document).ready(function() {
	
	/* ********************************************************************
		On Page Load
	******************************************************************** */
	
	// load the carousel
    jQuery('#mycarousel').jcarousel();
	
	
	/* ********************************************************************
		thumbnail mouseover event
	******************************************************************** */
	
	$(".thimage").mouseover(function () {
		
		$(this).css("borderColor", "#f2601e");
		
    });
	
	
	/* ********************************************************************
		thumbnail mouseout event
	******************************************************************** */
	
	$(".thimage").mouseout(function () {
		
		$(this).css("borderColor", "#cccccc");
		
    });
	
	
}); // end jquery loaded



	