$(document).ready(function()
{
	
	$('[placeholder]').focus(function() {
		var input = $(this);
		if(input.val() == input.attr('placeholder')) {
			input.val('');
			input.removeClass('placeholder');
		}
	}).blur(function(){
		var input = $(this);
		if(input.val() == '' || input.val() == input.attr('placeholder'))
		{
			input.addClass('placeholder');
			input.val(input.attr('placeholder'));
		}
	}).blur();
	
	$('.navigation ul li').hover(function(){
												$(this).find('ul').fadeIn('fast');
											},
											function(){
												$(this).find('ul').fadeOut('fast');
											});
											
	$(".see_example").click(function() {
				$.fancybox({ 'type':'iframe',
							 'href':$(this).attr('rel'),
							 'width':500,
							 'height':320
							 
					
				});
			});
	$(".request_demo").click(function() {
		$.fancybox({ 'type':'iframe',
					 'href':'quote.html',
					 'width':645,
					 'height':600
						
					 
			
		});
	});
	
	$(".see_example_vshoc").click(function() {
		$.fancybox({ 'type':'iframe',
					 'href':$(this).attr('rel'),
					 'width':715,
					 'height':510
						
					 
			
		});
	});
});
