$(function(){

	$('.cb').colorbox({
		width: 700,
		height: '80%',
		iframe: true
	});

	/*
	##################################################################
	## DEV
	##################################################################
	*/
	
	$('.portfolio-changing a').hide();
	$('.portfolio-changing a:first').show();
	$('.portfolio-changer li:first a').addClass('current');
	
	$('ul.portfolio-changer li a').hover(function(){
		show = $(this).attr('id').substr(3);
		$('.portfolio-changer a').removeClass('current');
		$('.portfolio-changing a').fadeOut(500);
		$(this).addClass('current');
		setTimeout(function(){
			$('#'+show).fadeIn(500);
		}, 500);
	}, function(){
	
	});
	
	
	$('.latestnews li a img').wrap('<span>');
	var top = $('.latestnews li a:first span').html();
	$('.latestnews .img-ph').append(top);
	
	$('.latestnews li a').hover(function(){
		nshow = $(this).find('span').html();
		$('.latestnews .img-ph img').remove();
		$('.latestnews .img-ph').append(nshow);
		
	}, function(){
		$('.latestnews .img-ph img').remove();
		$('.latestnews .img-ph').append(top);
	});
	
	
	
});
