jQuery(document).ready(function($) {
	
	//Cufon
	Cufon.set('fontFamily', 'Titillium').replace('h1',{textShadow: '#000 2px 2px'})('h2',{textShadow: '#000 2px 2px'})('h3',{textShadow: '#000 2px 2px'})('h4',{textShadow: '#000 2px 2px'})('h5',{textShadow: '#000 2px 2px'})('h6',{textShadow: '#000 2px 2px'});
	
	//Next and Previous buttons for gallery							
	$("div.arrow a").mouseover(function() {
		$(this).fadeTo(500,0);
	});
	$("div.arrow a").mouseout(function() {
		$(this).fadeTo(500,0.7);
	});
	
	//Tooltips
	$(".tooltipped img[title]").tooltip('#demotip'); 
	
	//Lightbox
	$('a.lightbox').lightBox();
}); 

