$(document).ready(function() {

	$('.models').hide();

	$('a.make').click(function(){
		$(this).next().toggle('fast');
		return false;
	});


	var cur_page=window.location;
	
	$('.more_pics').live('click', function() {
		$('.thumbs').fadeOut('slow',function(){
			$('.thumbs').load('http://www.car-wallpapers.co.uk/extra_images.php', {'page': current_page+1, 'cur_page':cur_page},function(){
			$('.thumbs').show();
			$('.thumbimage').fadeTo('fast',0.5);
			$('.prevnext').fadeTo('fast',0.5);
		})});
		return false;
	  });
	  

	$('.less_pics').live('click', function() {
		$('.thumbs').fadeOut('slow',function(){
			$('.thumbs').load('http://www.car-wallpapers.co.uk/extra_images.php', {'page': current_page-1, 'cur_page':cur_page},function(){
			$('.thumbs').show();
			$('.thumbimage').fadeTo('fast',0.5);
			$('.prevnext').fadeTo('fast',0.5);
		})});
		return false;
	  });




	$('.thumb_images').live('click',function() {
		$next_page=$(this).children('img').attr('src');
		$('.the_preview').fadeOut('slow', function() {
			$('.the_preview').load('http://www.car-wallpapers.co.uk/new_preview.php', {'page': $next_page}, function(){
				$('.the_preview').fadeIn('slow');
			})
		});
		return false;
	});
	
	$('.thumbimage').fadeTo('fast',0.5);	
	
	$('.thumbimage').live('mouseover',function() {
		var $link=$(this);
		$($link).fadeTo('fast',1);;
		return false;
	});
	$('.thumbimage').live('mouseout',function() {
		var $link=$(this);
		$($link).fadeTo('fast',0.5);;
		return false;
	});	
	
	
	$('.prevnext').fadeTo('fast',0.5);	
	
	$('.prevnext').live('mouseover',function() {
		var $link=$(this);
		$($link).fadeTo('fast',1);;
		return false;
	});
	$('.prevnext').live('mouseout',function() {
		var $link=$(this);
		$($link).fadeTo('fast',0.5);;
		return false;
	});	
	
});

