$().ready(function(){
    $(function(){
    $('.homeimage').children('img').css('width','595px');
		$('.homeimage').children('img').css('height','180px');
        $('.homeimage').parent().css('position', 'relative');
        $('.homeimage').cycle({
            //fx:     'turnDown',
            speed: 'fast',
            timeout:4500
            //next:   '.imgnext', 
    		//prev:   '.imgprev' 
        });
    });
});


