//Menu Intitialisation
$(document).ready(function(){ 
	$('ul.sf-menu').supersubs({ minWidth:12, maxWidth:27, extraWidth:1 }).superfish({autoArrows:false, animation:{opacity:'show',height:'show'}, speed:'fast'});
	$('#slider').nivoSlider({controlNav:false, directionNav:false, effect:'fade'});
	$('.popup').tooltip({ effect: 'slide', slideOffset: -5});
});

//Ajax loading
function loaderscript(loadDivID, pageref) {
	$(loadDivID).load(pageref);
}

//Text Resizing
$(function(){
		$('.textresize').click(function(){
			var ourText = $('#content-main');
			var currFontSize = ourText.css('fontSize');
			var finalNum = parseFloat(currFontSize, 10);
			var stringEnding = currFontSize.slice(-2);
			if(this.id == 'larger') {
				finalNum *= 1.2;
			}
			else if (this.id == 'smaller'){
				finalNum /=1.2;
			}
			ourText.css('fontSize', finalNum + stringEnding);
		});
	});
	


$(document).ready(function(){
//clickable divs
	$('.clickable').click(function(){
		 window.location=$(this).find("a").attr("href");
		 return false;
	});
	
	
//colorbox
	$('.colorbox').colorbox();
	$('.image-gallery a').colorbox();
//striped table
	$('.striped tr:nth-child(odd)').addClass("alt");
});


