$(document).ready(function() { 

$('img[src="?Action=thumbnail&Width=562&Height=375&algorithm=fill_proportional"]').remove();
$('img[src="?Action=thumbnail&Width=143&Height=100&algorithm=proportional"]').remove();


// MENU DROP DOWN
$('#mainmenu ul li').find('ul').hide();

$('#mainmenu ul li').hover(function() {
		$(this).find('ul:first').delay(0).show('fast');
		}, function() {
			$(this).find('ul:first').delay(500).slideUp('fast');
		});
	
// STYLE MENU TOP LEVEL PARENT ITEM
$('#mainmenu ul ul').hover(function() {
		$(this).parent().find('a:first').addClass('parent-menu');
		}, function() {
			$(this).parent().find('a').removeClass('parent-menu');
		});

// COL MARGINS
$('.col + .col').css('margin-left', '20px');
$('li.span2_5:nth-child(odd)').css('margin-left', '0px');

//INVESTMENT LINK THROUGHS
var commsref = $('.comms h1').parent().attr('href');
var indsref = $('.inds h1').parent().attr('href');
var rentsref = $('.rents h1').parent().attr('href');
var resisref = $('.resis h1').parent().attr('href');

$('.comms .more-invest-link').attr('href', commsref);
$('.inds .more-invest-link').attr('href', indsref);
$('.rents .more-invest-link').attr('href', rentsref);
$('.resis .more-invest-link').attr('href', resisref);



    $('#slider').nivoSlider({
        effect: 'fade', // Specify sets like: 'fold,fade,sliceDown'
        animSpeed: 600, // Slide transition speed
        pauseTime: 5000, // How long each slide will show
        startSlide: 0, // Set starting Slide (0 index)
        directionNav: false, // Next & Prev navigation
        directionNavHide: true, // Only show on hover
        controlNav: true, // 1,2,3... navigation
        controlNavThumbs: false, // Use thumbnails for Control Nav
        pauseOnHover: true, // Stop animation while hovering
    });




});

