$(document).ready(function(){
	$('#expat li').each(function(){
		var $index = $(this).index() + 1;
		$(this).children('a').append('<img src="../images/step'+ $index +'.png" />')
	});
    if ($('#expat li a').is('.selected')){
        $('#expat li a').not('.selected').parent('li').addClass('unselected');
    }
	$('#expat li a').hover(function(){
		$(this).children('img').stop().animate({
			height: 202,
			left: 0,
			opacity: 1,
			top: 0,
			width: 202
		}, 300);
	},function(){
		$(this).children('img').stop().animate({
			height: 172,
			left: 15,
			opacity: 0,
			top: 15,
			width: 172
		}, 300);
	});
	
	// TARGET: _BLANK
	var $hostname = window.location.hostname;
	$('a[href^="http://"],a[href^="www."]').not('a[href^="http://'+ $hostname +'"],a[href^="'+ $hostname +'"]').attr('target','_blank');

});
