// JavaScript Document

$(document).ready(function() {
	if ( $('body').width() <= 1150 ) {
		$('#container').hide();
	}
	else {
		$('#container').show();
	}
	$(window).resize(function() {
                if ( $('body').width() <= 1150 ) {
                        $('#container').hide();
		}
                else {
                        $('#container').show();
                }

	});
});

$(document).ready(function() {
                $('.icon-bar').click(function() {

                                $('.icon-bar').removeClass('on');
                                  
                               $('.icon-content').slideUp('normal');
   
                                if($(this).next().is(':hidden') == true) {
                                                
                                                $(this).addClass('on');
                                                  
                                                $(this).next().slideDown('normal');
                                } 
                                  
                 });
                  

});

