$(document).ready(function() {

	//------------------------
						   
	$('#slider').cycle({ 
		fx:     'fade',
		timeout: 5000
	});
	
	//------------------------
	
	$(".clickable").click(function(){
	     window.location=$(this).find("a").attr("href");
   		 return false;
	});
	
	//------------------------
	
	$('#nav').droppy();
	
	//------------------------
	
	$('a.blank').click(function(){
		$(this).attr('target','_blank');
	});
		
	//------------------------
	
	if($.cookie('TEXT_SIZE')) {
	$('body').addClass($.cookie('TEXT_SIZE')); 
	}
	else{
		$('body').addClass('normal');
	}
	
	$('.resizer').click(function() {
	var textSize = $(this).parent().attr('class');
	$('body').removeClass('normal big').addClass(textSize);
	$.cookie('TEXT_SIZE',textSize, { path: '/', expires: 10000 });
	return false;
	});
	
	//------------------------	
	
	$('a[href=#top]').click(function(){
	    $('html, body').animate({scrollTop:0}, 250);
		return false;
	});
	
	//------------------------	
});
