
jQuery(document).ready(function ($) {
// clickable.js - finds any element of class=clickable and makes it a link to the href contained within
	$(".clickable").click(function(){
     window.location=jQuery(this).find("a").attr("href");
     return false;
	});	
// inner fade call
	$('#image_rotate').innerfade({ 
		speed: 1500, 
		timeout: 3500, 
		type: 'sequence',
		containerheight: '250px'
		});
});


