/*
Author: stresslimit
*/

jQuery(document).ready(function($) {

	$('.hide-if-no-js').show();
	$('.hidden').hide();
	
	if ($('.show-more').length) {
		$('.show-more').click(function(e){
			e.preventDefault();
			var $this = $(this);
			$this.siblings('.hidden').slideDown();
			$this.fadeOut();
		});
	}

  if ($.browser.msie) {
		$(function() {
		       var zIndexNumber = 1000;
		       // Put your target element(s) in the selector below!
		       $("div").each(function() {
		               $(this).css('zIndex', zIndexNumber);
		               zIndexNumber -= 10;
		       });
		});	
	}
 
});
