$(document).ready(function()
{
	
	$('.lightboximage').lightBox({fixedNavigation:true});

	$('.product_box').bind('click',
		function()
		{
			var newloc = $(this).attr('href');
			top.location = newloc;
		});
	
	$('#references').nivoSlider(
	{
		directionNav: false,
		controlNav: false,
		pauseOnHover: false,
		pauseTime:4000,
		effect: 'fade'

	});
	
	$('.section_link').bind('click',
		function()
		{
			// Get and set title for the form
			var pagesect = $(this).parents('.page_section');
			var titleel = pagesect.find('h3');
			$('#form_title_element').val(titleel.html());

			// Open dialog
			$("#contact_dialog").dialog('open');
			return false;
		});
	


	$("#contact_dialog").dialog(
		{ 
			modal: true,
			autoOpen: false,
			height: 505,
			width: 400,
			buttons: 
			{
				'Lähetä': function() 
				{
					
					if($('#dialog_form').validate().form())
					{
						$('#dialog_form').submit();
					}
					
				},
				'Peruuta': function()
				{

					$('#dialog_form')[0].reset();
					$(this).dialog('close');
				}
			}
		});

})
