// JavaScript Document
// Inner Script Code on Home page //
$(document).ready(function()
{
	
	$('#slideshowinner').cycle({
        fx:'fade',
		speed: 500,  
        timeout: 4000
    });
  //hide the all of the elements with class moretext
  $(".moretext").hide();
  
  //show the more link for users with javascript enabled
  $(".morelesslink").show();
  
  //toggle the content to be displayed
  $(".morelesslink").click(function()
  {   
    
      if ($(this).prev(".moretext").is(":hidden"))
               {
                    $(this).html("- View Less");
                    $(this).prev(".moretext").slideToggle(600);
                    $(this).addClass("less");
                    $(this).removeClass("more");
               } else {
                   $(this).html("+ Read More");
                   $(this).prev(".moretext").slideToggle(600);
                   $(this).addClass("more");
                   $(this).removeClass("less");
               }
                
  });
   $("ul.sf-menu").superfish().find('ul').bgIframe({opacity:true}); 
});

