/*------------------------------------------------------------------
 
    [city] 
 
    Date:                               02/10/2011
    Version:                            1.0
	
-------------------------------------------------------------------*/

/*------------------------------------------------------------------
	home page main image animation
-------------------------------------------------------------------*/

$(document).ready(function() {
	
	/*
	$('#main_image_show').cycle({ 
		fx:    'fade', 
		timeout: 7000,
		pager: '#main_nav_elements'
	});
	*/ 
	
	$('#partner_show').cycle({ 
		fx:    'fade', 
		timeout: 3000
	}); 
				
});

/*------------------------------------------------------------------
	case study gallery carousel
-------------------------------------------------------------------*/
$(document).ready(function() {
    jQuery('.carousel').jcarousel();
}); 

/*------------------------------------------------------------------
	from carousel to bigger image 
-------------------------------------------------------------------*/
$(document).ready(function() {
	
	var first_image = $(".carousel li img:first").attr('value');
	$('#content_gallery').attr('style','background: url(' + first_image + ') no-repeat; ')
			
	$('.show_bigger').click(function() {
  		var get_src = $(this).attr('value');
  		$('#content_gallery').attr('style','background: url(' + get_src + ') no-repeat; ')  		
	});
});

