$(document).ready(function() {
						   
  $("div.iFrameCTFF,iframe.iFrameQuote").hide();
  
  $("#track").click(function() {
	$("div.iFrameCTFF").show();
	$("iframe.iFrameQuote").hide();
  	$("#dialogin").dialog({ width: 500, height:260, draggable: false, modal: true, resizable: false, show: 'fade', hide: 'fade', position:['center'] });
  });
  $("#quoteme").click(function() {
  	$("iframe.iFrameQuote").show();
	$("div.iFrameCTFF").hide();
  	$("#dialog").dialog({ width: 600, height:700, draggable: false, modal: true, resizable: false, show: 'fade', hide: 'fade', position:['center'] });
  });

  $("#1").lavaLamp({
	  fx: "easeout", 
	  speed: 700,
	  click: function(event, menuItem) {
		  return true;
	  }
  });
  
});
