//colorbox pop-up calls

//blog temporary sidebar
$(document).ready(function() {
	$("a.blogger-colorbox").colorbox({
		width:"700px",
		inline:true,
		href: function() {
			var bloggerBio = $('.blogger-bio', this).attr('id');
			return '#'+bloggerBio;
		}
	});
});

//wufoo forms
$(document).ready(function() {
	
	$("a.colorbox-form").colorbox({
		width:"50%",
		height:"80%",
		iframe:true
	});
});

//newsletter signup
$(document).ready(function() {
	
	$("a.colorbox-newsletter").colorbox({
		width:"540px",
		height:"550px",
		iframe:true
	});
});


// My TripList 
$(document).ready(function() {
	
	$("a.colorbox-mytriplist").colorbox({
		width:"540px",
		height:"500px",
		iframe:true
	});
});
