/**
 *
 * @package Jquery Survey system													
 * @version 1.0 Final $Aneeshtan  4:18 PM 2/10/2010	
 * @copyright (c)Nukelearn Group  http://www.nukelearn.com	Copyright (c) 2009 Anant Garg (anantgarg.com | inscripts.com)										
 * @license http://creativecommons.org/licenses/by-nc-sa/3.0 Attribution-Noncommercial-Share Alike
 *
 */

$(function(){var b=$("#loader");var c=$("#pollcontainer");b.slideDown();$.get("modules.php?app=mod&name=poll","",function(e,d){c.html(e);a(c);c.find("#viewresult").click(function(){b.slideDown();$.get("modules.php?app=mod&name=poll","result=1",function(g,f){c.slideUp(1000,function(){$(this).html(g);a(this)});b.slideUp()});return false}).end().find("#pollform").submit(function(){var f=$(this).find("input[name=poll]:checked").val();if(f!=""){b.slideDown();$.post("modules.php?app=mod&name=poll",$(this).serialize(),function(h,g){$("#formcontainer").slideUp(100,function(){$(this).html(h);a(this);b.slideUp()})})}return false});b.slideUp()});function a(d){$(d).find(".bar").hide().end().slideDown("slow",function(){$(this).find(".bar").each(function(){var e=$(this).css("width");$(this).css("width","0%").animate({width:e,},1000)})})}});

