

jQuery(function($) {

	$.fn.supersized.options = {
		startwidth: 640,
		startheight: 480,
		vertical_center: 1,
		slideshow: 1,
		navigation: 1,
		transition: 1, //0-None, 1-Fade, 2-slide top, 3-slide right, 4-slide bottom, 5-slide left
		pause_hover: 0,
		slide_counter: 0,
		slide_captions: 1,
		slide_interval: 6000
	};
	$('#supersize').supersized();
});

jQuery(function($) {
	//setting tip style
	$.fn.qtip.styles.cenanduStyle = {
		width: 470,
		padding: '10px',
		tip: 'leftMiddle',
		background: '#fff',
		color: '#00463F',
		font:'italic normal bold 20px/25px Georgia, Palatino, Times, serif', 
		border: {
			 width: 1,
			 radius: 0,
			 color: '#fff'
		},
		name: 'light'
	}
	//setting a tooltip on para-items
	$('#primary-nav a[href][title]').qtip({
		content: {
        	text: false // Use each elements title attribute
     	},
	   show: 'mouseover',
	   hide: 'mouseout',
	   position: {
	      corner: {
	         target: 'rightMiddle',
	         tooltip: 'leftMiddle'
	      }
	   },
		 style: 'cenanduStyle'
	});
	
});
