function init() {
		$(".example7").colorbox({width:"100%", height:"100%", iframe:true});
		$(".example2").colorbox();
		$(".tooltips").hide();
		
		$("#tooltips").hover(function() {
		var tooltips = $ (this).attr('id');
		$('.' + tooltips).show();
		$(this).css("cursor", "pointer");
		//better off having above line above inside css
		},function() {
		$(".tooltips").hide()
		return false;
		});
		
		
		}
		
	
$(document).ready(init);


