// Call when ready
$(document).ready(function(){
	
	// SLIDER CONTENT
	// Collect Sliders
	$('.slider h3').click(function() { $(this).parent().find('.slider_content').slideToggle(); });
	
	$('.slider img').mouseenter(function() { $(this).next('.img_functions').toggle(); });
	
	$('.slider img').mouseleave(function() { $(this).next('.img_functions').toggle(); });
	
	
	$('.slider h3 img').after('<div class="img_functions"></div')
	$('.slider h3 .img_functions').append('<div class="img_expander">Expand Gallery</div');

	var open_gallery = 0;
	$('.init_gallery').click(function() {
		if (open_gallery == 0) {
			open_gallery = 1;
			$('#wrapper').margin({left: '100%'});
		} else {
			open_gallery = 0;
			adjustStyle($(window).width());
		}
	});
});
