I'm using the code below to get the posts featured image URL. I need to be able to get the large size image, right now it's getting the URL to the original size image.
<?php $src = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID, 'ttrust_post_thumb_big'), array( 5600,1000 ), false, '' );?>
<a href="<?php the_permalink() ?>" rel="bookmark" class="imagewrap"><div style="background: url(<?php echo $src[0]; ?> ) !important;"></div></a>

ttrust_post_thumb_bigwithlargeand see? – its_me Jul 19 '12 at 2:31