$(function () {
	$('#fld3').val($.cookie('flashModule'));
	$('.itemBuy').click(function () {
		var module = $(this).parent().prev().children('h2').children().text();
		$.cookie('flashModule', module, {expires: null, path: '/'});
	});
	$('.contentBuy').click(function () {
		var module = $(this).parent().children('h1').text();
		$.cookie('flashModule', module, {expires: null, path: '/'});
	});
	$('a[rel=lightbox]').fancybox({
		'titlePosition'	: 'over'
	});
	$('#mainPortfolio .up').hover(function () {
		$(this).next().next().addClass('hover');
	}, function () {
		$(this).next().next().removeClass('hover');
	});
});
