function gotoSite(id) 

{ 

  switch(id) 

  { 

    case 1: 

            window.location.href='http://www.photoshop-weblog.com/category/feature/';

            break;             

    case 2: 
            window.location.href='http://www.photoshop-weblog.com/category/galleries/'; 

            break;

    case 3: 
            window.location.href='http://www.photoshop-weblog.com/category/tutorials/'; 

            break;

    case 4: 
            window.location.href='http://www.photoshop-weblog.com/category/addons/'; 

            break;

    case 5: 
            window.location.href='http://www.photoshop-weblog.com/category/news/'; 

            break;

    case 6: 
            window.location.href='http://www.photoshop-weblog.com/category/beauty/'; 

            break;


    case 7: 
            window.location.href='http://www.photoshop-weblog.com/category/books/'; 

            break;


    case 8: 
            window.location.href='http://www.photoshop-weblog.com/category/photography/'; 

            break;

    case 9: 
            window.location.href='http://www.photoshop-weblog.com/category/illustrator/'; 

            break;

  } 

} 
