$(function(){
	$('a.modal').nyroModal({
		galleryCounts: null
	});

	$('#samples li img').jcaption({
		wrapperElement: 'div',
		imageAttr: 'title',
		copyStyle: true,
		animate: true,
		show: { height: 'show' },
		hide: { height: 'hide' }
	});

	currentPage(1);

	messagePopUp();

});

function currentPage(n) {
	var path = location.pathname.split('/');
	$('#menu ul li a').each(function() {
		if ($(this).attr('href') == '/'+path[n]) {
			$(this).attr('class', 'current');
		}
	});
}

function messagePopUp() {
	var styles = {
		position: 'absolute',
		top: '7px',
		left: '160px',
		width: '275px',
		padding: '5px',
		border: '1px solid red'
	};
	$('.error-message').css(styles).hover(function() {
		$(this).fadeOut();
	});
}

