// JavaScript Document
$ (document).ready(function() {

//Homepage Image Content slideshow
			$('#slide').cycle({
				fx:     'fade',//'fade'
				speed:   4000,//fading speed
				timeout: 4000//for each image 						 
  	   		});


//Quicklinks slide		
			 jQuery('#qlslide').jcarousel({
				scroll:1,				
				wrap: 'circular'
			});		 

			
//Main Navigation Tabs
		$('.maintab').click(function() {
	
			$('.maintab').removeClass('active');
			
			
			$('.subtab').slideUp('normal');
	   
			if($(this).next().is(':hidden') == true) {
				
				$(this).addClass('active');
					
				$(this).next().slideDown('normal');					
			}
			 
		 });

	$('.subtab').hide();
	
	
//Survey poll Result
			
			$("a#pollrslt").fancybox( {
				 'type'        : 'iframe',   				
				 'scrolling'   : 'no',
				 'width'  : 750,
                 'height'  : 700
			 });
			
			/*$('#fancyclick').click(function() {											
				$(this).fancybox( {
				 'type'        : 'iframe',   				
				 'scrolling'   : 'no',
				 'width'  : 750,
                 'height'  : 700
				});				 
			 });*/
			
			//onclick='$("a#pollresult").trigger("click");'
			
		$('#fancyclick').hover(
            function(){
                $(this).attr({ src : '/images/layout/btn_vote_o.gif'});
            },
            function(){ 
                $(this).attr({ src : '/images/layout/btn_vote.gif'});          
		});	
			
		

//Buy Book button hover
	$('#buy').hover(
            function(){
                $(this).attr({ src : '/images/layout/btn_buy_the_book_o.gif'});
            },
            function(){ 
                $(this).attr({ src : '/images/layout/btn_buy_the_book.gif'});         
		});	

});
