$(document).ready(function(){

	jQuery(function(){
		jQuery('ul.sf-menu').superfish( {
		
			animation: { opacity:'show' }, 
			speed: 'fast'
		
		});
	});
	
	Cufon.replace('.box h4.title');
	Cufon.replace('#pt-content h2');

	$(document).ready(function(){

			$('#pt-content').after('<ul id="pt-controls"><li id="pt-prev"><a href="#">&laquo;</a></li><li id="pt-pager"></li><li id="pt-next"><a href="#">&raquo;</a></li></ul>').cycle({
				fx: 'fade',
				speed: 'fast',
				timeout: 6000,
				next: '#pt-next',
				prev: '#pt-prev',
				pager: '#pt-pager'
			});
		
		});
	
	$(".form input").focus(function() {
		$(this).parent().parent().addClass("curFocus")
	});
	$(".form input").blur(function() {
		$(this).parent().parent().removeClass("curFocus")
	});
	
	$('div.flickr_badge_image a').attr("target","_blank");

	
});