You can go to the album and click on the link at the top that says View Fullsize, then use a firefox plug-in called Downloadthemall to download all the pictures in the album.
It doesn't work very well if you have more than 100 pictures in the album though, because the View Fullsize link will only show the first 100 pictures.
Another thing you can do, if you are more technically savvy is
It doesn't work very well if you have more than 100 pictures in the album though, because the View Fullsize link will only show the first 100 pictures.
Another thing you can do, if you are more technically savvy is
go to the album, then view the page source. There's a bunch of javascript in the page source that includes the direct links to the pictures.
It looks like this
{
src:"http://img.suicidegirls.com/media/members/0/36/14XXXX/89002/3598846.jpg",
thumbnail: "http://img.suicidegirls.com/media/members/0/36/14XXXX/89002/3598846_thumb.jpg",
width: "154",
height: "135", caption: "halloweenSM.jpg"},
If you copy and paste all that javascript into a text document, do a find and replace of
{
src:"
with
<img src="
and a find and replace of
",
thumbnail:
with
" />
copy and paste
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>
</head>
<body>
at the top and
</body>
</html>
at the bottom save the file, open it in firefox, and use Downloadthem all to save all the resulting pictures.