
var count=1;

function prev() {
	count --;
	if (count < 1) {count = 10;}
	switchimg(count);
	
}
function next() {
	count ++;
	if (count > 10) {count = 1;}
	switchimg(count);
	
}
function switchimg(a){
	switch (a){
	case 1:
		document['portfolio'].src = "http://ninjamediadesigns.com/images/portfolio.jpg";
		document['portfolio'].alt = "ARPCA.com";
		document.getElementById("cont").innerHTML="ARPCA.com is a dynamic wordpress based site that includes custom php, and javascripting. You will also notice the calendar plugin altered to match thier theme, as well as drop down menu that is touchscreen adaptable.  The Client requested a site that they could update content on themselves and have the ease of use that comes with a good content management system.";
		
	break;
	case 2:
		document['portfolio'].src = "http://ninjamediadesigns.com/images/portfolio1.jpg";
		document['portfolio'].alt = "coloradoprocessservers.net";
		document.getElementById("cont").innerHTML="Colorado Process Servers was my first site I constructed. Originally It was a static site with about 14 or so pages including custom javascript and css scripts. Recently the owner requested I update the site to an easier to manage CMS site.  Using wordpress she now has the ability to add pages to the site and not have to worry about switching the menu bar or making sure changes take place over the entire site.  In addition she wanted to post a forum for clients";
		
	break;
	case 3:
		document['portfolio'].src = "http://ninjamediadesigns.com/images/portfolio2.jpg";
		document['portfolio'].alt = "fotorecord.com";
		document.getElementById("cont").innerHTML="Fotorecord Started as a simple three page site.  It is constantly growing and I maintain it in the form of visual changes across the board.  Since its inception, I have added a signup form, with php script that emails the results to the owner and stores a record in a file to be used by a data base.  The website has undergone several front page revisions and each one looks better than the last.  The owner also has a blog where they showcase some of the most recent specials that are available through online ordering.";
	
	break;
	case 4:
		document['portfolio'].src = "http://ninjamediadesigns.com/images/portfolio3.jpg";
		document['portfolio'].alt = "sapphiretech.org";
document.getElementById("cont").innerHTML="Sapphire Tech is owned and operated by TesTex Inc.  I have included links and using their existing format created new pages for the owner. Ultimately there will be a redesign in order that will feature a complete file management system with a special linking ability so that customers can get a copy of the file that is stored securely on the server.";
		
	break;
	case 5:
		document['portfolio'].src = "http://ninjamediadesigns.com/images/portfolio4.jpg";
		document['portfolio'].alt = "testexinspection.com";
		document.getElementById("cont").innerHTML="Testex inspection is owned and operated by TesTex Inc.  I recreated the site from scratch the design layout and formatting of the site includes javascripting for the rotating header, some flash for nonessential but nice text, an auto resizing background image, and transparent css tricks that keep the foreground from being transparent while the midground is transparent. Finally there is a secure web section that allows them to store documents for authorized personnel.";
	
	break;
	case 6:
		document['portfolio'].src = "http://ninjamediadesigns.com/images/portfolio5.jpg";
		document['portfolio'].alt = "testex inventory database";
		document.getElementById("cont").innerHTML="Testex Inc had need of a centralized database to maintain and control their product inventory. This inventory features php security for two different types of users.  Admin users are able to search the database, add, remove, and edit items as well as transfer items between branch offices.  Non- admin users are able to use the data base to search for specific equipment and its location within the company so that they can request the item for jobs requiring the equipment. The database was constructed in a WAMP environment.";
	break;
	case 7:
		document['portfolio'].src = "http://ninjamediadesigns.com/images/portfolio6.jpg";
		document['portfolio'].alt = "Global Game Jam Entry for 2011";
		document.getElementById("cont").innerHTML="This was my submission for the Global Game Jam in 2011.  It is a full flash game I designed in 19 hours total from concept to final version as you see it now. The game utilizes about 400 lines of code to exemplify the theme of extinction.  Unlike most of the participants in the jam, I had to work during the weekend so I had to do all the work solo. The point was to survive as long as you could while letting all three of the endangered animals survive by choosing when to 'eat' certain resources. It is posted on my site in the blog (general category) if you want to check it out.  Had I had more time I would have changed some aspects of the game, but to stay true to the submission this is it in its turned in form.";
	break;
	case 8:
		document['portfolio'].src = "http://ninjamediadesigns.com/images/portfolio7.jpg";
		document['portfolio'].alt = "Cntmicrosystems.com";
		document.getElementById("cont").innerHTML="This was a simple wordpress upgrade of an existing static site. The site was poorly laid out using map based links, and was hard for the user to update. Right now the owner has the ability to update content as they see fit and their channelonline store account is set in an iframe so they can view the store without leaving the site. A little simpler than my other sites, but this is what the customer wanted, no frills.";
	break;
	case 9:
		document['portfolio'].src = "http://ninjamediadesigns.com/images/portfolio8.jpg";
		document['portfolio'].alt = "denverprocessserver.net";
		document.getElementById("cont").innerHTML="This was a simple two page site for the owner of colorado process servers,  she wanted to run tests on which name would benefit her better for clients.  She still gets hits off of this one, but the colorado process server site is her main site.";
	break;
	case 10:
		document['portfolio'].src = "http://ninjamediadesigns.com/images/portfolio9.jpg";
		document['portfolio'].alt = "UniqueMagneticJewelry.com";
		document.getElementById("cont").innerHTML="This Site was the first that I created a store using cart 66.  The site is easily update-able, and allows the owner to add or subtract any items they wish as well as allow the customer to specify special instructions regarding size of the jewelry and other options. with a quick few html switches posting each item will be a breeze for the customer to add new items to the site.";
	break;
	}

}

