// JavaScript Document
	$(document).ready(function(){
		$('#open_demos').click(function(){
            $('#animation').attr('src','product_demos/demos_ap.php');
			$('#shadowbox').show();
			$('#iframe').animate({"width": "650px"},"slow");
			$('#iframe').animate({"height": "500px"},"slow");
		});
        $('.open_demos').click(function(){
            //$('#animation').attr('src','product_demos/blank.html');
            $('#shadowbox').show();
			$('#iframe').animate({"width": "650px"},"slow")
                .animate({"height": "500px"},"slow");
   			//setTimeout("$('#animation').attr('src','"+$(this).attr("title").substring(1)+"');",1000);

        })
		$('#is_demo').click(function(){
			$('#animation').attr('src','');
			$('#shadowbox').show();
			$('#iframe').animate({"width": "700px"},"slow");
			$('#iframe').animate({"height": "500px"},"slow");
			setTimeout("$('#animation').attr('src','http://www.cfptools.com/images/ISdemo2.swf');",1500);								  
		});
		$('#close_frame').click(function(){
			$('#animation').attr('src','product_demos/blank.html');
			$('#iframe').animate({"width": "10px"},"slow");
			$('#iframe').animate({"height": "10px"},"slow");
            
			var n = setTimeout("$('#shadowbox').hide();",1200);
		});
		$('#maximize').click(function(){
			$('#iframe').animate({"width": "100%"},"slow");
			$('#iframe').animate({"height": "95%"},"slow");
									  });
	});