$( document ).ready( function( ) 
{
	
	jQuery.preloadImages = function()
	{
	  for(var i = 0; i<arguments.length; i++)
	  {
		jQuery("<img>").attr("src", arguments[i]);
	  }
	}
	$.preloadImages( "/assets/templates/default/images/ifeatureslogo-alt.png" );
	
	// FAQs
	
	// clear down all FAQs
	$( "body.faq div.contentinner div" ).hide( );
	
	// handle on click and reveal/hide
	$( "body.faq div.contentinner h4" ).click( function( )
	{
		$( "body.faq div.contentinner div" ).slideUp( );
		$( this ).next( "div" ).animate( { height: 'show', opacity: 'show' }, 'slow'); 
		
	});
	
	// logo rollover
	$( "img#ifeatureslogo" ).hover( function( ) 
	{
		$( this ).attr( "src", "/assets/templates/default/images/ifeatureslogo-alt.png" );	
	},
	function( )
	{
		$( this ).attr( "src", "/assets/templates/default/images/ifeatureslogo.png" );
	});
});

