jQuery(document).ready(function($){
	if ($('#FP_BOX').length > 0) {
		
                if ($('.viciao a.current').length == 0) {
                    $('.viciao a:first').addClass('current');
                    
                    var txt = $('.viciao a:first').attr('title');
                    $('#CONTENT_TEST p').text(txt);
                    var imgURL = (typeof($('.viciao a:first').attr('imgURL')) != 'undefined') ? 'Uploads/Construction/timthumb.php?src=' + $('.viciao a:first').attr('imgURL') + '&w=485&h=188' : 'http://placehold.it/485x188';
                    var image = '<img src="' + imgURL + '" />';
                    $('#CONTENT_IMG').html(image);
                }
                
                $('#FP_CONTENT_1').click(function(){
                    var url = $('.viciao a.current').attr('href');
                    window.location.href = url;
                });
                
                $('.viciao a').click(function(){
			$('.viciao a').removeClass('current');
			$(this).addClass('current');
			
			var txt = $(this).attr('title');
			$('#CONTENT_TEST p').text(txt);
			
                        $('#CONTENT_IMG').empty().text('loading...');
                        
			var imgURL = (typeof($(this).attr('imgURL')) != 'undefined') ? 'Uploads/Construction/timthumb.php?src=' + $(this).attr('imgURL') + '&w=485&h=188' : 'http://placehold.it/485x188';
			var image = '<img src="' + imgURL + '" />';
			$('#CONTENT_IMG').html(image);
                        
                        return false;
		});
	}
});
