$(document).ready(function(){

	// WEBCAMS
	$(".iframe").colorbox({iframe:true, initialWidth:"300px", initialHeight:"300px", width:"80%", height:"80%"});
	$(".image").colorbox();

	$("a[rel='external']").click(function(){
		this.target = "_blank";
	});
	
	// GALLERY
	$("#explanation-gallery").after('<p><a href="#" id="toggler">Click here to choose a Photo Gallery</a></p>');
	
	$('ul#taglist').css('display', 'none');
	
	$('a#toggler').click(function() {
		$('ul#taglist').toggle(600);
		return false;
	});
	
	// ANNONCE IPHONE COMPATIBLE
	$(function() { 
		$('#corner img').hover(function() { 
			$(this).stop().animate({ width:'200px', height:'200px' }); 
		}, function() { 
			$(this).stop().animate({ width:'80px', height:'80px' }); 
		}); 
	}); 
	
	$('#container1').tabs();


});