jQuery.noConflict();

(function($) {

$(function() {
	
	var flashInterface = new FlashInterface();
	setTimeout(function() {
		flashInterface.setObjectById("ieMovie");
	}, 50);
	
	$(".change-contact").each(function() {
		$(this)
			.append("<a class='over-contact' href='#'></a>")
			.find(".over-contact")
			.click(function() {
				flashInterface.call("switchPerson", $(this).parent().attr("id"), "click");
				return false;
			})
			.mouseover(function() {
				flashInterface.call("switchPerson", $(this).parent().attr("id"), "rollOver");
				return false;
			})
			.mouseout(function() {
				flashInterface.call("switchPerson", $(this).parent().attr("id"), "rollOut");
				return false;
			});
	});
	
	
		
	$("#flash")
		.mouseout(function() {
			flashInterface.call("mouseLeave");
		});
	
});
})(jQuery);