
	/*
	Front-end Developer
	@Mikael Carrara (http://www.mikaelcarrara.com)
	*/

	jQuery(document).ready(function(){

		/* Positioning */
		$('ul#solutions li:last-child').css({margin:'0',padding:'0',border:'none'});
		$('ul#gallery li:eq(3), ul#solutionsCategory li:eq(2), ul#solutionsCategory li:eq(5), ul#solutionsCategory li:eq(8), ul#news li:odd').css('margin-right','0');
		$('ul#moreSolutions li:last-child, ul.details#last').css('margin-bottom','0');

		/* External Links */
		$('a[rel="external"]').attr('target','_blank');

		/* Focus */
		$('input[type="text"], input[type="password"], textarea').focus(function(){
			$(this).css('border-color', '#d5dcdd');
		});
		$('input[type="text"], input[type="password"], textarea').blur(function(){
			$(this).css('border-color', '#fff');
		});

		/* Confirm */
		$('#sendMsg').click(function(){
			$(this).hide();
			$('p#confirm').fadeIn('last');
		});

	}); /*jQuery*/
