jQuery(function() {
$('#superbgimage img').hide();

	    // Options for SuperBGImage
	    $.fn.superbgimage.options = {
	        slideshow: 1, // 0-none, 1-autostart slideshow
	        slide_interval: 7000, // interval for the slideshow
	       speed: 'slow' // animation speed

	    };
	 
	    // initialize SuperBGImage
	    $('#superbgimage').superbgimage().hide();
});         




$(function() {
	$('#content_surround a#toggle').click(function(e) {
	  $('#content').slideToggle('500', function() {
	    // Animation complete. 
	  }); 

      $(this).text($(this).text() == 'Open' ? 'Close' : 'Open');     
      $(this).toggleClass("hid");  



	  e.preventDefault();
	});    
	$('#content_surround a#toggle').toggle(function() {
		$(this).animate({ bottom: '-=268' }, 450, 'swing');
	},function() {
		$(this).animate({ bottom: '+=268' }, 400, 'swing');
	});
	
});   


$(document).ready(function() {
    $('.offers h3').remove();
    $('.offers').cycle({
		fx: 'scrollLeft',
   		speed:    700, 
  		timeout:  5000 
	});
});


$(document).ready(function() {  
	$('#content_surround').height($(document).height()-265);  
	$.extend($.fn.jScrollPane.defaults, {showArrows:true});
	$('#text_content').jScrollPane();
	//setTimeout(function() {$('#text_content').jScrollPane();}, 1500);
    
	$(window).resize(function() { 
		if ($('#content_surround').is(':visible')) {
			$('#content_surround').css("display","none"); 
			$('#content_surround').height($(document).height()-265);          
			$('#content_surround').css("display","block"); 
		} else {$('#content_surround').height($(document).height()-265);}	
	});
});

