var $j = jQuery.noConflict();

$j(document).ready(function(){
	
	// =FOOTER
		$j('.nav-footer:first').css({
			'padding-left': 0,
			'border-left-width': 0
		});
		$j('.nav-footer:last').css({
			'border-right-width': 0
		});
		var navFooterHeight = 0;
		$j('.nav-footer').each(function(){
			if ($j(this).height() > navFooterHeight) {
				navFooterHeight = $j(this).height();
			}
			$j(this).height(navFooterHeight);
		});
	
	// =THEE SLIDESHOW
		$j('#thee-slideshow-1 .thee-slider ul').cycle({
			fx: 'scrollHorz',
			speed: 2000,
			timeout: 8000,
			prev: '#thee-slideshow-1 .thee-prev',
			next: '#thee-slideshow-1 .thee-next',
			pager: '#thee-slideshow-1 .thee-pager'
		});
		$j('#thee-slideshow-9 .thee-slider ul').cycle({
			fx: 'fade',
			next: '#thee-slideshow-9 .thee-next',
			prev: '#thee-slideshow-9 .thee-prev',
			speed: 2000,
			timeout: 8000
		});
	
	// =PRETTYPHOTO
		$j('a[rel^="prettyPhoto"]').prettyPhoto({
			show_title: false,
			social_tools: false
		});
	
});
