$(document).ready(function() {
	jQuery.easing.def = 'easeInOutExpo';
	$('.show-hide').toggle(function() {
		$(this).parent().parent().animate({height:300}, 700);
		$(this).toggleClass("hide")},
	function() { 
		$(this).parent().parent().animate({height:84}, 700);
		$(this).toggleClass("hide")
	})
	
});
$(document).ready(function() {
	jQuery.easing.def = 'easeInOutExpo';
	$('.show-hide-big').toggle(function() {
		$(this).parent().parent().animate({height:390}, 700);
		$(this).toggleClass("hide")},
	function() { 
		$(this).parent().parent().animate({height:84}, 700);
		$(this).toggleClass("hide")
	})
	
});

$(function() {
	/*$('.lb').lightBox({fixedNavigation:true});*/
	
	/*$('a[@rel*=lightbox]').lightBox({*/
	$('.lb').lightBox({
	overlayBgColor: '#000',
	overlayOpacity: 0.6,
	imageLoading: 'http://extranet.machinas.net:8080/design-terminal/assets/images/lightbox/loading.gif',
	imageBtnClose: 'http://extranet.machinas.net:8080/design-terminal/assets/images/lightbox/close.gif',
	imageBtnPrev: 'http://extranet.machinas.net:8080/design-terminal/assets/images/lightbox/prev.gif',
	imageBtnNext: 'http://extranet.machinas.net:8080/design-terminal/assets/images/lightbox/next.gif',
	containerResizeSpeed: 0.001,
	txtImage: 'Image',
	txtOf: 'of'
   });

});